RLMectionedResultsChange
Objective-C
@interface RLMSectionedResultsChange : NSObject
Swift
@_nonSendable(_assumed) class RLMSectionedResultsChange : NSObject
RLMSectionedResultsChange
对象封装有关 Realm 通知报告的分段结果变更的信息。
RLMSectionedResultsChange
传递到在RLMSectionedResults
上向-addNotificationBlock
注册的通知块,并报告自上次调用通知块以来集合中的哪些部分和行发生了更改。
更新名为tv
的UITableView
的完整示例:
[tv beginUpdates];
[tv deleteRowsAtIndexPaths:changes.deletions withRowAnimation:UITableViewRowAnimationAutomatic];
[tv insertRowsAtIndexPaths:changes.insertions withRowAnimation:UITableViewRowAnimationAutomatic];
[tv reloadRowsAtIndexPaths:changes.modifications withRowAnimation:UITableViewRowAnimationAutomatic];
[tv insertSections:changes.sectionsToInsert withRowAnimation:UITableViewRowAnimationAutomatic];
[tv deleteSections:changes.sectionsToRemove withRowAnimation:UITableViewRowAnimationAutomatic];
[tv endUpdates];
RLMSectionedResultsChange
中的所有数组始终按升序排序。
-
上一个版本的集合中已从本版本中删除的对象的索引路径。
声明
Objective-C
@property (nonatomic, readonly) NSArray<NSIndexPath *> *_Nonnull deletions;
Swift
var deletions: [IndexPath] { get }
-
新插入的新版本集合中的索引路径。
声明
Objective-C
@property (nonatomic, readonly) NSArray<NSIndexPath *> *_Nonnull insertions;
Swift
var insertions: [IndexPath] { get }
-
旧版本集合中已修改的索引路径。
声明
Objective-C
@property (nonatomic, readonly) NSArray<NSIndexPath *> *_Nonnull modifications;
Swift
var modifications: [IndexPath] { get }
-
要插入的节的索引。
声明
Objective-C
@property (nonatomic, readonly) NSIndexSet *_Nonnull sectionsToInsert;
Swift
var sectionsToInsert: IndexSet { get }
-
要删除的部分的索引。
声明
Objective-C
@property (nonatomic, readonly) NSIndexSet *_Nonnull sectionsToRemove;
Swift
var sectionsToRemove: IndexSet { get }
-
返回给定节中删除索引的索引路径。
声明
Objective-C
- (nonnull NSArray<NSIndexPath *> *)deletionsInSection:(NSUInteger)section;
Swift
func deletions(inSection section: UInt) -> [IndexPath]
-
返回给定节中插入索引的索引路径。
声明
Objective-C
- (nonnull NSArray<NSIndexPath *> *)insertionsInSection:(NSUInteger)section;
Swift
func insertions(inSection section: UInt) -> [IndexPath]
-
返回给定部分中修改索引的索引路径。
声明
Objective-C
- (nonnull NSArray<NSIndexPath *> *)modificationsInSection:(NSUInteger)section;
Swift
func modifications(inSection section: UInt) -> [IndexPath]