Reputation: 1
I created my first push app and got an problem by passing push data to my viewController. I want to create and display a new Cell in my tableviewController for each new Push Notification. I have no idea how I can do this..
Upvotes: 0
Views: 115
Reputation: 3815
What you can do is , Make use of the following function
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
Add that function in AppDelegate and implement the logic for adding objects/data to the collection, which further will be used to display rows in your tableViewController.
Upvotes: 1