我的問題關於在iPhone項目中使用活動指標。 我有一個包含一個UIActivityIndicatorViewUIActivityIndicatorView正確使用
@interface StatusView : UIView
{
UIActivityIndicatorView *indicator;
UILabel *textLabel;
}
- (id)initWithFrame:(CGRect)frame Text:(NSString*)text andShowIndicator:(BOOL)value;
以我業務邏輯代碼我調用[指示器startAnimating]和幀顯示在屏幕的底部的一個類。該代碼還包含了釋放指示
- (void)dealloc
{
[indicator release];
[super dealloc];
}
大部分指標運行良好的時候,但也有永不消失的幾個場合dealloc方法。
我是否總是需要顯式調用stopAnimating方法?這個版本處理它嗎? 什麼是正確的用法?
將指示器隱藏設置爲YES。每次你想停止時你必須調用stopAnimating方法。 – Shantanu
它會自動停止嗎? – cateof