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!");
}];
将以下内容添加到您的 Podfile
中,并运行 $ pod install
pod "AFViewShaker", "~> 0.0.5"
将以下内容添加到您的 Cartfile
中,并运行 $ carthage update
github "ArtFeel/AFViewShaker", ~> 0.0.5
如果您正在使用 Xamarin.iOS,请参阅 由 Robert Waggott 提供的此端口。