博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS - UIRefreshControl
阅读量:5075 次
发布时间:2019-06-12

本文共 531 字,大约阅读时间需要 1 分钟。

UIRefreshControl:UIControl (UIControl:UIView)

  

使用一:

  UITableView之Cell刷新,UIRefreshControl为其一属性.

     self.customTableView.refreshControl = [[UIRefreshControl alloc] init];

     [self.customTableView.refreshControl addTarget:self action:@selector(doRefresh:)    forControlEvents:UIControlEventValueChanged];    

}

- (void)doRefresh:(UIRefreshControl *)sender {

 

    NSLog(@"refreshing");

    [self.customTableView.refreshControl performSelector:@selector(endRefreshing) withObject:nil afterDelay:1.0];

}

 

转载于:https://www.cnblogs.com/share-iOS/p/6426572.html

你可能感兴趣的文章