From 6a2358b91777b159b8b80f58dc7c0204bc6ddf49 Mon Sep 17 00:00:00 2001 From: tigerAndBull Date: Tue, 27 Apr 2021 23:15:34 +0800 Subject: [PATCH] Update README.md --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1612e2b..8a98cd0 100755 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ TABAnimated是提供给iOS开发者自动生成骨架屏的一种解决方案。 - CocoaPods ``` -pod 'TABAnimated', '2.5.4' +pod 'TABAnimated', '2.5.5' ``` - Carthage @@ -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);