我有一个从 Web 服务加载数据的方法。
在该方法的开始,我喜欢显示一个 UIActivityIndicator。
但仅将隐藏更改为 NO 不会重绘 UIView。
所以 UIActivityIndicator 是在长时间加载数据后可见的,这肯定为时已晚。
那么如何告诉 UIView 在数据加载开始之前重绘 activityIndicator 呢?
- (IBAction)loadData{
[activity setHidden:NO];
// here the activtyIndicator should appear
...
loadlongdataFromNet..
[activity setHidden:YES];
// here the activtyIndicator should disappear
}
Best Answer-推荐答案 strong>
切勿在主线程上执行网络和其他计算密集型操作!!!
它将卡住/阻止用户界面。您应该将与网络相关的长处理移至后台线程:
- (void)loadData
{
[activity startAnimating]; // use this instead of setHidden
[NSThread detachNewThreadSelectorselector(reallyLoadData) toTarget:self withObject:nil];
}
- (void)reallyLoadData
{
// network-heavy processing
// then:
[activity performSelectorOnMainThreadselector(stopAnimating) withObject:nil waitUntilDone:YES];
}
关于iphone - ios setHidden :NO at begin of a long method does not show on display,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/13124226/
|