我设法通过ReactiveCocoa
成功集成了CocoaPods
。
该项目还将生成并运行。
在文件中,我有以下代码:
#import <ReactiveCocoa/ReactiveCocoa.h>
#import <ReactiveCocoa/UITextField+RACSignalSupport.h>
UITextField *fld = [UITextField new];
[fld.rac_textSignal subscribeNext:^(id x)
{
NSLog(@"___%@___", x);
}];
当我运行它会生成错误:
-[UITextField rac_textSignal]: unrecognized selector sent to instance 0x7fd2fa6cda50'
我已经尝试过此处提出的解决方案:How to install ReactiveCocoa properly using CocoaPods?
但没有成功。
最佳答案
如果您尝试将CocoaPods与现有项目集成,则应在构建设置中为$(inherited)
添加Other Linker flags
标志。
关于ios - ReactiveCocoa无法识别的选择器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31745851/