【发布时间】:2013-01-08 17:16:02
【问题描述】:
在我的应用中,我在表格视图中显示本地通知。
代码如下:
NSArray *notificationArray=[[UIApplication sharedApplication] scheduledLocalNotifications];
UILocalNotification *notif = [notificationArray objectAtIndex:indexPath.row];
[cell.textLabel setText:notif.alertBody];
[cell.detailTextLabel setText:[notif.fireDate description]];
我想从表格视图中删除选定的行,我该怎么做?
【问题讨论】:
-
请考虑一下您标记的内容与
xcodeIDE 无关。
标签: objective-c ios cocoa-touch uilocalnotification