美文网首页
无标题文章

无标题文章

作者: 答案在风中飘 | 来源:发表于2016-11-11 11:08 被阅读7次

    // 下拉刷新

    tableView.mj_header= [MJRefreshNormalHeader headerWithRefreshingBlock:^{

    // 模拟延迟加载数据,因此2秒后才调用(真实开发中,可以移除这段gcd代码)

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

    // 结束刷新

    [tableView.mj_header endRefreshing];

    });

    }];

    // 设置自动切换透明度(在导航栏下面自动隐藏)

    tableView.mj_header.automaticallyChangeAlpha = YES;

    // 上拉刷新

    tableView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{

    // 模拟延迟加载数据,因此2秒后才调用(真实开发中,可以移除这段gcd代码)

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

    // 结束刷新

    [tableView.mj_footer endRefreshing];

    });

    }];

    tableView用法

    相关文章

      网友评论

          本文标题:无标题文章

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