如何在iPhone中的tableview中的特定行显示传入的通知APNS消息?

时间:2015-04-23 11:36:23

标签: objective-c arrays uitableview apple-push-notifications

如何将notification文字从APNS发送到UITableView? 我在objective-c中使用.xib。我希望文本从APNS通知发送到我的UITableView

我想在此使用数组。

如果可能,我想要演示代码。

1 个答案:

答案 0 :(得分:0)

请尝试以下方法在tableview中的特定位置插入文字..

  NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
   [self.tableview insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];