ReactiveCocoaDemo icon indicating copy to clipboard operation
ReactiveCocoaDemo copied to clipboard

ReactiveCocoa simple demo

Results 2 ReactiveCocoaDemo issues
Sort by recently updated
recently updated
newest added

`GeoCityViewController.m`文件 ``` -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { // 回调的处理 // 此处应该加上self弱引用 [[self rac_signalForSelector:@selector(didSaveDataCallback:) fromProtocol:@protocol(SaveDataCallBack)] subscribeNext:^(RACTuple *tuple) { City *newCity = tuple.first; [self.viewModel.cities insertObject:newCity atIndex:0]; [self.geoTbl reloadData]; }]; // 再传递viewDelegate给新页面 AddCityViewController *addController...