AFViewShaker 0.0.5

AFViewShaker 0.0.5

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布上次发布2017年11月

Philip Vasilchenko 维护。




  • Philip Vasilchenko

AFViewShaker

CocoaPods
Carthage compatible
license

关于

AFViewShaker 是一个简单的 UIView 震动动画的工具。

使用

为一个视图创建震动手势
AFViewShaker * viewShaker = [[AFViewShaker alloc] initWithView:self.formView];
为多个视图创建震动手势
NSArray * allFields = @[self.emailField, self.passwordField];
AFViewShaker * viewShaker = [[AFViewShaker alloc] initWithViewsArray:allFields];
使用默认参数震动
[self.viewShaker shake];
使用附加参数震动
[self.viewShaker shakeWithDuration:0.6 completion:^{
    NSLog(@"Hello World!");
}];

安装

使用 CocoaPods

将以下内容添加到您的 Podfile 中,并运行 $ pod install

pod "AFViewShaker", "~> 0.0.5"

使用 Carthage

将以下内容添加到您的 Cartfile 中,并运行 $ carthage update

github "ArtFeel/AFViewShaker", ~> 0.0.5

对于 Xamarin 用户

如果您正在使用 Xamarin.iOS,请参阅 由 Robert Waggott 提供的此端口