三种类型的Block

Block作为属性

把block作为对象的copy属性,定义:

1
2
3
4
5
6
7
8
9
10
11
@interface Animal : NSObject
@property (nonatomic,copy) void(^eat)(int);
@end


@implementation Person
- (void)hungry
{
_eat(3);
}
@end

调用:

1
2
3
4
5
Animal *a = [[Animal alloc] init];

[a setEat:^(int count) {
// TODO:
}];

Bloc作为函数参数

定义:

1
2
3
4

@interface Animal : NSObject
- (void)sleep:(void(^)())block;
@end

调用:

1
2
3
4
Animal *a = [[Animal alloc] init];
[a sleep:^{
// TODO:
}];

Block作为函数返回值

定义:

1
2
3
4
5
6
7
8
9
10
11
12
13

@interface Animal : NSObject
- (void (^)(int))run;
@end

@implementation Animal
- (void (^)(int))run
{
return ^(int b){
NSLog(@"run %d米",b);
};
}
@end

调用:

1
2
3
4
5
6
- (void)func
{
Animal *a = [[Animal alloc] init];

a.run(1000);
}