美文网首页
苹果自带的刷新控件UIRefreshControl(不推荐使用)

苹果自带的刷新控件UIRefreshControl(不推荐使用)

作者: 訷訷 | 来源:发表于2016-04-15 11:32 被阅读1574次

    苹果自带的刷新控件UIRefreshControl(不推荐使用)
    有bug,例:如果正在刷新,用tabbar切换控制器界面时会卡住

    UIRefreshControl *control = [[UIRefreshControl alloc] init];
    [control addTarget:self action:@selector(loadNewTopics) forControlEvents:UIControlEventValueChanged];
    [control beginRefreshing];
    [self.tableView addSubview:control];
    

    相关文章

      网友评论

          本文标题:苹果自带的刷新控件UIRefreshControl(不推荐使用)

          本文链接:https://www.haomeiwen.com/subject/xflnlttx.html