页面菊花效果

来源:互联网 发布:pdf笔记软件 编辑:程序博客网 时间:2024/04/28 23:54

    这里介绍一下如何实现最简单的页面菊花加载效果。无需第三方繁琐的代码,从而诠释了真正的“简单粗暴”!

    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@”正在拼命加载...” message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:nil, nil];

                              UIActivityIndicatorView *actView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];

[actView setFrame:CGRectMake(120,50,37,37);

[alertView addSubview:actView];

[actView startAnimating];

[alertView show];

[alertView release];

 

注:仅此而已,不喜勿喷。

0 0