I have a tabbarcontroller, in one tab it has a navigationcontroller with tableview controller.And there are different kinds of test-daily,weekly ans so on.
I want to make a daily localnotification,so when user touches it,my app loads,tabbar contrlorer selects that one navcon(i know how to do that) and then it selects a specific row in the table-how can i do that?
Thank you!
I have a tabbarcontroller, in one tab it has a navigationcontroller with tableview controller.And
Share
First of all, you have to supply a userInfo property with your
UILocalNotification(for the application to know which notification has been triggered later on)With the help of
userInfo, you can push the rightUIViewControlleronto the viewController-stack.To respond to opening the app with a shown notification, you have to implement the following method:
– application:didReceiveLocalNotification:
Just note the following: