美文网首页
实现TableView的动画展示

实现TableView的动画展示

作者: 不要虚度美好的时光 | 来源:发表于2022-11-27 08:43 被阅读0次
#import "TableViewAnimationKitHeaders.h"

- (void)viewDidLoad {
    [super viewDidLoad];
    // .......

    [_homePageTableView reloadData];
    [self starAnimationWithTableView:self.homePageTableView];
}
- (void)starAnimationWithTableView:(UITableView *)tableView {
    int x = arc4random() % 11;
    [TableViewAnimationKit showWithAnimationType:x tableView:tableView];
}

相关文章

网友评论

      本文标题:实现TableView的动画展示

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