http://my.oschina.net/leejan97/blog/268536
http://blog.csdn.net/enuola/article/details/8674063
?
?
注意事項
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