block 現在已經基本上已經使用非常普遍了,在使用用中也又很多坑,下面把block開發中應該知道的那幾件事總結下.
:內聯(inline)Block 內聯block 說白了就是block被嵌入到一個函數中 例如: typedef void (^HelloBlock)(void); - (void) BlockTest{ HelloBlock myBlock= ^(void){ NSLog(@"Hello Block"); }; myBlock(); } 注意事項 1.內聯的block中內部定義的變量 自己本身有讀寫權限 2.block內部要修改外部變量 需要將外部變量聲明__block 3.Block retain是無效的,要想保留block生命周期,可以通過copy來實現,記得release 4.被block的應用的對象,retainCount會自動加一,為了打破這種 retain circle,可以在對象前加__block,這樣block塊就不會維護這個對象了 下面的寫法如果不加上_block a無法dealloc __block A a =[ [[A alloc] init] withBlock:^{ [a action]; [ a release]; }]; //這樣A的dealloc方法就會調用 @interface ViewController : UIViewViewController { NSString *_string; } __block ViewController *controller = self; _block = ^{ NSLog(@"string %@",controller->_string); }; 5.在獨立的block中不能引用self,如果需要訪問可以使用參數傳遞的方法(可以把其考慮成c+中參數傳入函數指針對應copy)** 6.不要隨便用.語法 #import <UIKit/UIKit.h> @interface AppDelegate : NSObject <UIApplicationDelegate> @property (nonatomic, strong) NSString *stringProperty; @end #import "GCDAppDelegate.h" @implementation AppDelegate @synthesize stringProperty; - (void) BlockTestError{ HelloBlock myBlock= ^(void){ self.stringProperty = @"Block Objects"; NSLog(@"String property = %@", self.stringProperty);//運行錯誤 }; myBlock(); }} - (void) BlockTestCorrect{ HelloBlock myBlock= ^(void){ [self setStringProperty:@"Block Objects"]; NSLog(@"self.stringProperty = %@", [self stringProperty]); //運行ok }; myBlock(); }} @end 另外 本人打算十一後離職換份工作,哪位仁兄公司有意向 站內信聯系,幫忙內推下哈. 再打下廣告哈 我搭建的個人博客 也已經上線了 引用的是hexo , 地址是hufeng825.github.com ui配色再微調中,對ie10 以下支持不太好 建議用chrome Firefox 或者safrari 浏覽 另外也已經對移動設備做了響應是布局.