2011-02-06 97 views
0

請參考下面最好的辦法

- (void) viewDidLoad() 
{ 
    NSMutableArray *tempArray = [[NSMutableArray alloc]init]; 
    [self setImagesArray:tempArray]; 
    [tempArray release]; 

    [self Display]; 
} 

-(void) display 
{ 
    //here I just add objects to imagesArray like 
    [self.imagesArray addObject:temp]; //temp is some image 
} 

現在我想知道我的代碼,如果我釋放imagesArray中的dealloc()將它導致內存泄漏,是對上述辦法初始化聲明爲屬性的數組。

Thanx提前。

+0

不要多次發表相同的問題。 – NSResponder 2011-02-06 13:04:57

+0

@NSResponder:我的網站很慢地正常運行。它發生了。我沒有故意這樣做。 – Aisha 2011-02-06 13:09:04

回答

0

正如我所理解的那樣,您只需通過dealloc中的圖像數組來進行正確的操作即可。