iOS tabber点击动画

这里一共有5种动画,前4种不需要动画图片,利用CAAnimation动画就可以完成
最后一个使用lottie动画实现类似闲鱼动画渲染
/// 带重力效果的弹跳


image.png

/// 先放大,再缩小动画


image.png

/// z轴旋转动画


image.png

/// y轴位移动画


image.png

/// 放大并保持
/// @param viewArray 视图数组


image.png

/// lottie动画


image.png

在UITabBarController中实现方法调用:
@property (nonatomic, assign) NSInteger index;//用于存放当前选中的tabber item
在shouldSelectViewController方法中调用该方法
if (tabBarController.tabBar.selectedItem.tag != self.index) {
[self setAnaimationWithTabBarController:tabBarController selectViewController:viewController];
}
self.index = tabBarController.tabBar.selectedItem.tag;

image.png

你可能感兴趣的:(iOS tabber点击动画)