博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIProgressHUD
阅读量:5998 次
发布时间:2019-06-20

本文共 579 字,大约阅读时间需要 1 分钟。

 

UIProgressHUD - 清雨小竹 - 清雨小竹
 

@interface UIProgressHUD : NSObject

- (void) show: (BOOL) yesOrNo;

- (UIProgressHUD *) initWithWindow: (UIView *) window;

@end

@interface HelloController : UIViewController

@end

@implementation HelloController

- (void) killHUD: (id) aHUD

{

[aHUD show:NO];

[aHUD release];

}

- (void) presentSheet

{

id HUD = [[UIProgressHUD alloc] initWithWindow:self.view];

    [HUD setText:@"Downloading File. Please wait."];

    [HUD show:YES];

    [self performSelector:@selector(killHUD:) withObject:HUD afterDelay:5.0];

}

调用 presentSheet

转载于:https://www.cnblogs.com/zzili/archive/2012/12/06/6663230.html

你可能感兴趣的文章
Linux 搭建LAMP论坛
查看>>
5款高逼格实用手机APP推荐,千万不能错过!
查看>>
如何获取红米手机5A的Root权限
查看>>
linux shell函数
查看>>
Kaggle练习赛之数字识别——新手适用
查看>>
只有程序员才能看懂的爆笑段子?超级实用和搞笑哦!!!
查看>>
今天遇到两个问题maven和oracle的
查看>>
企业wifi管家带来无限商机,你看到了吗?
查看>>
深入剖析JSP charset
查看>>
使用go test执行性能测试
查看>>
Android调用系统相册选择图片,支持小米4云相册
查看>>
1周第3课 Linux远程管理工具 putty xshell 密钥登陆
查看>>
在centos系统shell脚本中cat和重定向符号<<EOF结合使用的注意事项
查看>>
VMware ESXI VMware Tools的安装
查看>>
d3.js学习笔记--Mike Bostock: What makes Software Good?
查看>>
cisco 出现 %Error opening tftp://255.255.255.255 错误解决办法
查看>>
论公司运营
查看>>
香港五大顶级域名12月第三周增366个 台湾增219个
查看>>
10月27日中国域名商解析量TOP14:万网蝉联冠军
查看>>
全球十大新顶级域名注册量排行榜:.xyz榜首 .top居亚
查看>>