前言:
上一篇讲ReactiveCocoa是函数响应式编程,并将多种事件响应的方式统一起来,使得不同的事件响应方式高度统一。同时也讲了ReactiveCocoa框架里面常见的几个概念。接下来基于那几个概念来看看UI开发中的几个应用。
实战:
1,替换了UIButton的target-Action:
[[self.btn rac_signalForControlEvents:(UIControlEventTouchUpInside)] subscribeNext:^(id x) {
NSLog(@"点击了button");
}];
到rac_signalForControlEvents方法里面查看这个方法做的操作:
- (RACSignal *)rac_signalForControlEvents:(UIControlEvents)controlEvents {
@weakify(self); return [[RACSignal
createSignal:^(id<RACSubscriber> subscriber) {
@strongify(self); [self addTarget:subscriber action:@selector(sendNext:) forControlEvents:controlEvents];
[self.rac_deallocDisposable addDisposable:[RACDisposable disposableWithBlock:^{
[subscriber sendCompleted];
}]]; return [RACDisposable disposableWithBlock:^{
@strongify(self);
[self removeTarget:subscriber action:@selector(sendNext:) forControlEvents:controlEvents];
}];
}]
setNameWithFormat:@"%@ -rac_signalForControlEvents: %lx", RACDescription(self), (unsigned long)controlEvents];
}
可以看到创建了一个RACSignal信号并在block回调的时候执行操作为按钮添加了监听。此方法返回一个RACSignal信号,同时我们在外界调用subscribeNext订阅这个信号,当点击按钮的时候调用sendNext方法发送值出来就回调了subscribeNext的block。
2,绑定textView的监听(使用textfield同样的道理)
[self.myTextView.rac_textSignal subscribeNext:^(id x) {
NSLog(@"输出:%@",x);
}];
3,绑定手势:
UITapGestureRecognizer *tap = [UITapGestureRecognizer new];
[self.redView addGestureRecognizer:tap];
[tap.rac_gestureSignal subscribeNext:^(id x) {
NSLog(@"点击了红色的view");
}];
可以感到一些比较平常的UI控件基于 ReactiveCocoa上使用起来还是比较简单的,这里值得说一下的是当UI控件是代理方式来监听响应过程的时候。比如UIImagePicker。下面代码实现一个简单的小功能,点击按钮选择图片,图片选择好了之后显示在UIImageView上面。
4,替换UI控件的代理回调:
[[self.btn rac_signalForControlEvents:(UIControlEventTouchUpInside)] subscribeNext:^(id x) { //点击按钮弹出UIImagePicker
self.imagePicker = [UIImagePickerController new];
[self.imagePicker.rac_imageSelectedSignal subscribeNext:^(id x) {
//该block回调是在照片选择完成的时候调用
NSLog(@"%@",x);
NSDictionary *dic = (NSDictionary *)x;
self.myImageView.image = dic[@"UIImagePickerControllerOriginalImage"];
[self.imagePicker dismissViewControllerAnimated:YES completion:nil];
}];
//rac_delegateproxy是RAC下的代理属性,这行代码可以理解为,RAC下的代理将会执行block回调替换之前的代理去执行imagePickerControllerDidCancel方法
[[self.imagePicker.rac_delegateProxy signalForSelector:@selector(imagePickerControllerDidCancel:)] subscribeNext:^(id x) {
//该block调用时候:当delegate要执行imagePickerControllerDidCancel
[self.imagePicker dismissViewControllerAnimated:YES completion:nil];
}]; [self presentViewController:self.imagePicker animated:YES completion:nil]; }];
5,RAC下的通知:
第一个页面注册通知:
[[[NSNotificationCenter defaultCenter] rac_addObserverForName:@"ChangeColor" object:nil] subscribeNext:^(id x) {
NSNotification *notification = (NSNotification *)x;
NSLog(@"收到通知:%@",notification.object);
self.view.backgroundColor = (UIColor *)notification.object;
}];
第二个页面中返回按钮发送通知:
[[NSNotificationCenter defaultCenter] postNotificationName:@"ChangeColor" object:[UIColor grayColor]];
6,RAC下的观察者设计模式:
currentValue是视图控制器拥有的一个Int类型的属性.观察该属性的变化
[[self rac_valuesAndChangesForKeyPath:@"currentValue" options:(NSKeyValueObservingOptionNew) observer:self] subscribeNext:^(id x) {
//解包元组,会把元组里面的值按顺序给变量赋值
RACTupleUnpack(NSString *kind,NSString *new) = x;
NSLog(@"观察到currentValue的值发生改变,现在的value等于%@,%@",kind,new); }];
按钮点击改变currentValue的值
[[self.valueButton rac_signalForControlEvents:(UIControlEventTouchUpInside)] subscribeNext:^(id x) {
self.currentValue ++;
}];
源代码地址:https://github.com/SZT0728/ReactiveCocoaProgram
可以看到RAC下的UI高度统一了多种事件响应成block回调的方式。文章不精髓,只希望能够记下自己学习的点滴并以最简单的形式分享出来。若有不当之处,请指出。