UIActivityIndi​​catorView总是崩溃

问题描述

| 我的UIActivityIndi​​catorView总是使我的应用程序崩溃。 当我按下下载按钮时,指示器显示并开始旋转。 但是当我停止它时,我只需要触摸屏幕某处,我的应用就会崩溃。 。H
@interface DownloadViewController : UIViewController < FinishedParsing,NSFetchedResultsControllerDelegate > 
{
    UIActivityIndicatorView* indicator;
}
@property (nonatomic,retain) UIActivityIndicatorView* indicator;

- (void)initSpinner;
- (void)spinBegin;
- (void)spinEnd;
.m
@implementation DownloadViewController

@synthesize indicator;

- (IBAction)download:(id)sender 
{
    [self initSpinner];
    [self spinBegin];

    [OJSGatewayCommunicationService parseArticles :self];
}

- (void)initSpinner 
{
    self.indicator = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]autorelease];    

    // we put our spinning \"thing\" right in the center of the current view
    CGPoint newCenter = (CGPoint) [self.view center];
    indicator.center = newCenter;   
    [self.view addSubview:indicator];   
}

- (void)spinBegin 
{
    [indicator startAnimating];
}

- (void)spinEnd 
{
    self.indicator.hidesWhenStopped = YES;
[indicator stopAnimating];
    indicator.hidden = TRUE;
    [indicator removeFromSuperview];
}

- (void) fetchPDF:(NSMutableArray *)chapters
{
    [self spinEnd];
    ...
}
    

解决方法

        取而代之或自动释放它,可以控制它并在完成后通过调用self.indicated = nil手动释放它,并在dealloc中释放它。 这样,您可以确定它不会在没有警告的情况下消失...     ,        在您的职能:
- (void)spinEnd {
    [indicator stopAnimating];
    self.indicator = nil;
}
我建议不要将指标设置为零。的确,设置
self.indicator = nil
将使指示器释放。如果这也触发了释放,则执行主循环时,UI可能无法正确重绘自身。注意:由于您的行为异常,这只是我的假设。它可能会起作用,也可能不会起作用。 指示器停止时,我还要确保将
hidesWhenStopped
设置为to5ѭ。总而言之,我将重写:
- (void)spinEnd {
    self.indicator.hidesWhenStopped = YES; //-- additional guarantee,but it should already be set
    [indicator stopAnimating];
}
并在
-dealloc
中释放
indicator
- (void)dealloc {
    ....
    [_indicator release];
    _indicator = nil;
    ...
    [super dealloc];
}
顺便说一句,还要修复ѭ10中的内存泄漏:
- (void)initSpinner {
    self.indicator = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease];    
    ....
要注意的是,当您执行
initSpinner
时,如果已经存在,7,,则将新的
UIActivityIndicatorView
分配给
self.indicator
将使先前的one被释放。 编辑: 如果以上操作均无效,则可以尝试以下两种方法: 在
-spinEnd
中将指示器
hidden
属性设置为YES; 可能是我写错了,但是在我看来,设置
self.indicator.hidesWhenStopped = YES
可能会更有效,然后再调用
[indicator stopAnimating];