Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tigerAndBull authored Apr 27, 2021
1 parent 3a0418a commit 6a2358b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ TABAnimated是提供给iOS开发者自动生成骨架屏的一种解决方案。
- CocoaPods

```
pod 'TABAnimated', '2.5.4'
pod 'TABAnimated', '2.5.5'
```

- Carthage
Expand Down Expand Up @@ -155,6 +155,14 @@ cellSize:[NewsCollectionViewCell cellSize]];

OC

使用变量名修改
_tableView.tabAnimated.adjustBlock = ^(TABComponentManager * _Nonnull manager) {
manager.animation(@"titleImageView").down(3).radius(12);
manager.animation(@"nameLabel").height(12).width(110);
manager.animation(@"timeButton").down(-5).height(12);
};

使用index修改
```
_tableView.tabAnimated.adjustBlock = ^(TABComponentManager * _Nonnull manager) {
manager.animation(1).down(3).radius(12);
Expand Down

0 comments on commit 6a2358b

Please sign in to comment.