iOS开发中关于《今日头条》App下拉刷新之后顶部显示“今日头条推荐....”的实现思路

效果图

0.0.gif

实现思路

我的思路很简单,刷新之后先为TableView设置一个头视图,过几秒之后将TableView的头视图置为nil。

代码

  - (void)loadNewData{
sleep(2);
UIView * header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 25)];
header.backgroundColor = [UIColor redColor];
self.tableView.tableHeaderView = header;
[self.tableView.mj_header endRefreshing];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.85 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
    self.tableView.tableHeaderView = nil;
});
  }

****本篇文章到这里就结束了,愿大家加班不多工资多,男同胞都有女朋友,女同胞都有男朋友。***

你可能感兴趣的:(iOS开发中关于《今日头条》App下拉刷新之后顶部显示“今日头条推荐....”的实现思路)