在UITableView / UIScrollView中是否有自动的方式来了解ContentSize更改?
解决方法
答案实际上是简单的使用KVO(键值观察);
- (id)initWithFrame:(CGRect)frame tableView:(UITableView *)tableView { // .... [self.tableView addObserver:self forKeyPath:@"contentSize" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld | NSKeyValueObservingOptionPrior context:NULL]; // .... } - (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { if ([keyPath isEqualToString:@"contentSize"]) { // Do something } }
我还不清楚旗帜.