Swiftgram/Watch/Extension/TGTableDeltaUpdater.h
2018-11-14 23:03:33 +04:00

18 lines
475 B
Objective-C

#import <WatchKit/WatchKit.h>
@class TGIndexPath;
@interface TGTableAlignment : NSObject
@property (nonatomic, assign) bool deletion;
@property (nonatomic, assign) NSInteger pos;
@property (nonatomic, assign) NSInteger len;
@end
@interface TGTableDeltaUpdater : NSObject
+ (void)updateTable:(WKInterfaceTable *)table oldData:(NSArray *)oldData newData:(NSArray *)newData controllerClassForIndexPath:(Class (^)(TGIndexPath *indexPath))controllerClassForIndexPath;
@end