This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://xiaohui3837843.blog.163.com/blog/static/5438874020121764447974/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[cell.layer setBorderWidth:1]; | |
[cell.layer setBorderColor:RGBCOLOR(205,205,205).CGColor]; | |
[cell.layer setShadowOpacity:0.5]; | |
[cell.layer setShadowOffset:CGSizeMake(1,0)]; | |
[cell.layer setShadowColor:RGBCOLOR(221, 221, 221).CGColor]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults write com.apple.Finder AppleShowAllFiles YES | |
defaults write com.apple.Finder AppleShowAllFiles NO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://stackoverflow.com/questions/1808320/iphone-setanimationwillstartselector-setanimationdidstopselector-not-working-a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.cnblogs.com/likwo/archive/2012/04/16/2451577.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
quene = [[ASINetworkQueue alloc] init]; | |
//quene.delegate = self; | |
ASIHTTPRequest *request =[[ASIHTTPRequest alloc] initWithURL:[[[NSURL alloc] initWithString:@"http://www.baidu.com"]autorelease]]; | |
[request setQueue:quene]; | |
request.delegate = self; | |
ASIHTTPRequest *request2 =[[ASIHTTPRequest alloc] initWithURL:[[[NSURL alloc] initWithString:@"http://www.google.com"]autorelease]]; | |
request2.delegate = self; | |
[quene addOperation:request]; | |
[quene addOperation:request2]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://code.google.com/p/gtm-http-fetcher/ | |
http://stackoverflow.com/questions/8317662/asihttprequest-request-sent-twice?answertab=active#tab-top | |
request.shouldAttemptPersistentConnection = NO; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.logicaltrinkets.com/wordpress/?p=178 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.opensource.apple.com/release/mac-os-x-105/ | |
http://llvm.org/ | |
http://lldb.llvm.org/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://mac.pcbeta.com/ | |
http://mac.pcbeta.com/thread-106993-1-1.html |