美文网首页
iOS骨架屏TABAnimated

iOS骨架屏TABAnimated

作者: 赵哥窟 | 来源:发表于2021-07-19 11:32 被阅读0次

TABAnimated 地址

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


image.png

这个就是TABAnimated实现的。

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

简单的使用

在 didFinishLaunchingWithOptions 中初始化 TABAimated

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

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

初始化
 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];
 }];
网络请求结束后停止动画即可
 // 停止动画,并刷新数据
 [self.tableView tab_endAnimationEaseOut];

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

相关文章

网友评论

      本文标题:iOS骨架屏TABAnimated

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