在我的UIViewController中,我添加了一個包含uitableview的子視圖。應用程序崩潰,並將錯誤消息發送到釋放的實例
MSEmployeeServiceController *empServices = [[MSEmployeeServiceController alloc]initWithNibName:@"MSEmployeeServiceController" bundle:nil];
[self.totScroll addSubview:empServices.view];
MSEmployeeServiceController
類包含一個UITableView
。當我試圖添加視圖應用程序崩潰與以下錯誤:
-[MSEmployeeServiceController numberOfSectionsInTableView:]: message sent to deallocated instance 0x8684030
我已經在視圖中設置數據源和委託連接。 請幫幫我。
當你釋放empServices對象? – Toploulou
發佈更多編碼以便幫助 – iEinstein