I am using today extension
I have displayed the list of events in tableview today notification.
while click on selected row event i want to send in appdelegate method
when click select row I am navigating in my app and call method openurl but i cann't get selected event in this method or selected row number.
so can we get data from today extension to our app
my current code in todayviewcotroller is
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"%s",__PRETTY_FUNCTION__);
[self.extensionContext openURL:[NSURL URLWithString:@"TestIt://"]
completionHandler:^(BOOL success) {
}];
}
when click on event send row number to appdelegate method(openurl).
appriciate for help