iphone 延时器,定时器

来源:互联网 发布:2017软件企业优惠政策 编辑:程序博客网 时间:2024/05/02 04:31
头文件定义:
NSTimer *timer;



实现文件:
3秒钟后执行loadHtmlView方法
   timer=[NSTimer scheduledTimerWithTimeInterval:3
                                           target:self
                                         selector:@selector(loadHtmlView)
                                         userInfo:nil
                                          repeats:YES];
原创粉丝点击