在我的項目我嘗試通過MVVM在VM工作, 所以在.h
文件如何綁定Realm對象更改?
@property (nonatomic, strong) NSArray *cities;
在.m
文件
- (NSArray *)cities {
return [[GPCity allObjects] valueForKey:@"name"];
}
GPCity
是RLMObject
子 如何通過ReactiveCocoa結合本(我是指查看所有城市的更新/添加/刪除)?
喜歡的東西:
RAC(self, cities) = [[GPCity allObjects] map:(GPCity *)city {return city.name;}];
你有沒有一起來看看在領域文檔的ReactiveCocoa例子嗎?也許你會在那裏找到一些東西:https://github.com/realm/realm-cocoa/tree/master/examples/ios/objc/RACTableView – joern