I am trying to select a row from a table view when a push notification is received.
I have myprojectAppDelegate.h
#import <UIKit/UIKit.h>
#import "iw.h"
#import "Bookmark.h"
@interface myprojectAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
UIWindow *window;
UITabBarController *tabBarController;
UINavigationController *navigationController;
NSMutableArray *tableData;
NSMutableArray *imagesList;
IBOutlet Bookmark *tableCell;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
@property(nonatomic, retain) NSMutableArray *tableData;
@property(nonatomic, retain) NSMutableArray *imagesList;
- (BOOL)getIsLaunched;
- (void)showService;
- (void)showMessage;
- (void) loadLogoList;
+ (const NSString*)getVersion;
+ (const NSString*)getXMLversionURL;
+ (NSMutableDictionary *)logos;
+ (void)setLogos:(NSMutableDictionary *)newDictionary;
- (void)checkVersion;
@end
and implementing the didReceiveRemoteNotification in myprojectAppDelegate.m file But the tableview is implemented in another class bookmarklist.m when the app start after launch options it navigates to bookmarklist.m and displays the table view.
I want to access that tableview which is in bookmarklist.m and select a row in the table when ever i receive a push notification.
please help me with this. i am new to ios programming.
Thanks.