iPhone上如何用UIAlertView实现加载中对话框功能?
- 内容介绍
- 文章标签
- 相关推荐
本文共计131个文字,预计阅读时间需要1分钟。
python// 显示加载对话框void dialogShow() { baseAlert=[[UIAlertView alloc] initWithTitle:@Loading message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:nil]; [baseAlert show]; // 创建并添加活动指示器 UIActivityIndicatorView}
本文共计131个文字,预计阅读时间需要1分钟。
python// 显示加载对话框void dialogShow() { baseAlert=[[UIAlertView alloc] initWithTitle:@Loading message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:nil]; [baseAlert show]; // 创建并添加活动指示器 UIActivityIndicatorView}

