ฉันต้องการลบแถว 1 ของตารางในฟังก์ชั่นที่ฉันกำหนดไว้ ในการใช้งานdeleteRowAtIndexPath
คุณจะต้องใช้IndexPath
ส่วนและแถวที่กำหนดไว้ ฉันจะสร้างดัชนีพา ธ แบบนี้ได้อย่างไร
อาร์เรย์ที่มี int {1} ในฐานะสมาชิกเท่านั้นที่จะผิดพลาด ข้อความ NSLog ระบุว่าจำเป็นต้องกำหนดส่วนด้วย
* แก้ไข -> รหัสที่เกี่ยวข้องกับการลบเซลล์:
NSIndexPath *myIP = [[NSIndexPath alloc] indexPathForRow:0 inSection:0];
NSArray *myArray = [[NSArray alloc] initWithObjects:myIP, nil];
// [self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:myArray withRowAnimation:UITableViewRowAnimationFade];
// [self.tableView endUpdates];