作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想停止ActivityIndicator
一段时间后。我想如果我在一段时间后调用一个停止事件指示器的方法,这可以实现。
可以使用 NSTimer
来实现,但我不知道如何。带有代码片段的示例会很棒。
最佳答案
在 .h
类(class),
UIActivityIndicatorView *activity;
- (void)viewDidLoad {
[super viewDidLoad];
//initialise activityIndicator and add it to view
activity = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
activity.frame = CGRectMake(150,200, 20, 20);
[self.view addSubview:activity];
[activity startAnimating];
//call timer to fire after your required time
[NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(timerMethod:) userInfo:nil repeats:NO];
}
-(void) timerMethod : (NSTimer *) theTimer {
// after 1.5 seconds, the activity indicator will be hidden.
[activity stopAnimating];
}
关于ios - 带有 ActivityIndicator 的 NSTimer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5360550/
我是一名优秀的程序员,十分优秀!