iphone - UIActivityIndicator 没有动画
<p><p>我一直在为这个问题撞墙,需要一些帮助。
我试图在后台加载数据时显示 UIActivityIndicator。我不确定这是否相关,但我正在加载一个表格 View 。指示器出现,但不旋转……除非我触摸屏幕,或者在加载时发生其他事情,比如我收到一条短信。代码如下:</p>
<pre><code>UIActivityIndicatorView*av = [[initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite] autorelease];
av.frame=CGRectMake(145, 160, 25, 25);
av.tag= 1;
;
;
;
</code></pre>
<p>我也试过这个:</p>
<pre><code>UIActivityIndicatorView*av = [[initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite] autorelease];
av.frame=CGRectMake(145, 160, 25, 25);
av.tag= 1;
;
;
;
</code></pre>
<p>并尝试注释掉最后一行 - 所以 <strong>not</strong> 让后台线程运行。我已经在 <code>viewDidLoad</code> 和 <code>viewDidAppear</code> 方法中尝试了这两个版本的代码。 </p>
<p>有什么想法吗?</p>
<p><strong>编辑</strong>这是我的加载方法</p>
<pre><code>- (void)load {
NSString *post = =%@", ];
for(int i = 1; i < ids.count; i++){
post = =%@", post, ];
}
NSURL *url=;
NSData *postData = ;
NSString *postLength = ];
NSMutableURLRequest *request = [[ init] autorelease];
;
;
;
;
;
/* when we user https, we need to allow any HTTPS cerificates, so add the one line code,to tell teh NSURLRequest to accept any https certificate, i'm not sure about the security aspects
*/
//];
NSError *error;
NSURLResponse *response;
NSData *urlData=;
NSString *data=[initWithData:urlData encoding:NSUTF8StringEncoding];
;
;
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您没有包含足够的代码来查看停止 <code>UIActivityIndicator</code> 动画的位置以及显示动画时发生的情况,但问题几乎可以肯定是以下问题之一:</p>
<p>1) 您希望您的代码等待某个异步方法,这会导致您的事件指示器过早关闭,</p>
<p>或</p>
<p>2) “后台”任务和 <code>UIActivityIndicator</code> 都在同一个线程上运行,而您的“后台”任务将线程独占到事件指示器不够用的地步是时候制作动画了。</p>
<p>这篇文章提供了一个如何将 <code>UIActivityIndicator</code> 推送到自己的线程中的示例:</p>
<p> <a href="https://stackoverflow.com/questions/4481467/activity-indicator-doesnt-spin" rel="noreferrer noopener nofollow">Activity Indicator doesn't spin</a> </p></p>
<p style="font-size: 20px;">关于iphone - UIActivityIndicator 没有动画,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10079483/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10079483/
</a>
</p>
页:
[1]