iOS骨架屏TABAnimated

2021-07-21 10:47:46 浏览数 (1)

TABAnimated 地址

下面这张图你也许在主流的App上都见过吧,加载的时候就是显示这个骨架图

image.png

这个就是TABAnimated实现的。

具体使用请看Git Hub的文档和Demo,很赞的就是最新版本支持Xib生成骨架图了。

简单的使用

代码语言:javascript复制
在 didFinishLaunchingWithOptions 中初始化 TABAimated

[[TABAnimated sharedAnimated] initWithOnlySkeleton];
[TABAnimated sharedAnimated].openLog = YES;

简单的说下一UITableView的简单使用

初始化
代码语言:javascript复制
 self.tableView.tabAnimated = [TABTableAnimated animatedWithCellClass:[TableCell class] cellHeight:180];
    self.tableView.tabAnimated.adjustBlock = ^(TABComponentManager * _Nonnull manager) {
        manager.animation(3).width(100);
  };
   
 [self.tableView tab_startAnimationWithCompletion:^{
       [self setupData];
 }];
网络请求结束后停止动画即可
代码语言:javascript复制
 // 停止动画,并刷新数据
 [self.tableView tab_endAnimationEaseOut];

以上就是简单使用,复杂的使用请看文档和Demo,这里就不具体讲解了。这个开源很赞了,再也不需要使用菊花了。

0 人点赞