@interface ViewController
{
NSMutableArray * GetPrices;
}
-(void)viewWillAppear:(BOOL)animated
{
GetPrices=[[NSMutableArray alloc]init];
// here I’m adding objects to the array..
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
@try { 如果([Getprices計數> 0){ 伊娃生命期Vs的房產壽命 - 在Objective-C的
// dealing with array values
}
}
@catch (NSException *exception) {
// here Im using some mail service to get crash description
}
}
所以我得到了以下信息到我的郵箱
堆棧跟蹤: - [__ NSCFString計數]:無法識別的選擇器發送到實例0x157153180
stackoverflow.com/questions/5152651/... from this ac已回答的問題我認爲這個數組是在某個時候發佈的。
現在我的疑問是,我的數組是否有可能被釋放...(讓我們說我的應用程序在後臺很長一段時間,我的數組會被釋放)。
這次事故有可能的原因是什麼? 謝謝你..
你的恐懼與偏執狂有關。你有沒有真正的問題? – trojanfoe
我沒有任何問題,我只是想清楚地知道,我對此內存管理感到困惑 –