iPhone开发 加载的时候出现一个加载框
来源:未知 责任编辑:智问网络 发表时间:2013-09-03 12:18 点击:次
先添加一个委托
_webView.delegate=self;
出现
if (alertView==nil){
alertView = [[UIAlertViewalloc] initWithTitle:nil
message: @"正在讀取網路資料"
delegate: self
cancelButtonTitle: nil
otherButtonTitles: nil];
UIActivityIndicatorView *activityView = [[UIActivityIndicatorViewalloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
activityView.frame = CGRectMake(120.f, 48.0f, 37.0f, 37.0f);
[alertView addSubview:activityView];
[activityView startAnimating];
[alertView show];
}
//消失
[myAlert dismissWithClickedButtonIndex:0 animated:YES];
摘自 凡娃软件
相关新闻>>
- 发表评论
-
- 最新评论 更多>>