一款仿照百度加载的动画
@implementation AppDelegate
- (void)viewDidLoad {
[super viewDidLoad];
//添加到window试图
[loadingView beginAnimation];
}
@end@implementation AppDelegate
- (void)viewDidLoad {
[super viewDidLoad];
//添加到自定义视图
[loadingView showLoadingViewInView:self.view];
}
@end@implementation AppDelegate
- (void)viewDidLoad {
[super viewDidLoad];
[loadingView stopAnimation];
}
@end