我有一個叫做Customer的類。如何處理「發送給不可變對象的變異方法」異常?
Customer *object; //in this object i have the following data varialbles.
object.customerName
object.customerAddress
object.customerContactList
我將customerContactList聲明爲NSMutableArray,並且還分配並初始化了它。
現在我正在從contactList中添加或刪除。
//Adding.
[object.customerContactList addObject:editcontacts];// here editcontacts one of the object in contactList.
//Deleting.
[object.customerContactList removeObjectAtIndex:indexPath.row];
[theTableView deleteSections:[NSIndexSet indexSetWithIndex:indexPath.section] withRowAnimation:UITableViewRowAnimationFade];
即使是NSMutableArray,我也收到異常。請幫幫我。
謝謝你, 馬丹磨憨
非常感謝您,我使用「複製」以列表的副本到聯繫人列表。現在我沒有得到這種例外。 – 2010-04-28 12:51:43
如果我的回答是對的,你爲什麼要勾選另一個? – JeremyP 2010-04-28 15:13:03