私のアプリでは、ローカル通知をテーブルビューで表示しています。
コードは次のとおりです。
NSArray *notificationArray=[[UIApplication sharedApplication] scheduledLocalNotifications];
UILocalNotification *notif = [notificationArray objectAtIndex:indexPath.row];
[cell.textLabel setText:notif.alertBody];
[cell.detailTextLabel setText:[notif.fireDate description]];
選択した行をテーブルビューから削除したいのですが、どうすればよいですか?