在我的应用程序中,我在表格视图中显示本地通知。
这是代码:
NSArray *notificationArray=[[UIApplication sharedApplication] scheduledLocalNotifications];
UILocalNotification *notif = [notificationArray objectAtIndex:indexPath.row];
[cell.textLabel setText:notif.alertBody];
[cell.detailTextLabel setText:[notif.fireDate description]];
我想从表格视图中删除选定的行,我该怎么办?