ios – UITableView / UIScrollView如何自动知道ContentSize更改?

前端之家收集整理的这篇文章主要介绍了ios – UITableView / UIScrollView如何自动知道ContentSize更改?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在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
    }
}

我还不清楚旗帜.

原文链接:https://www.f2er.com/iOS/336176.html

猜你在找的iOS相关文章