0

アプリ デリゲートからタブのインデックスを選択し、ストーリー ボードでタブがマップされているビュー コントローラーで関数を呼び出す必要があります。

(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {

     NSString *alertMessage = [[userInfo objectForKey:@"aps"] valueForKey:@"alert"];

    if (alertMessage != nil){
         UITabBarController *tabb = (UITabBarController *)self.window.rootViewController;
        tabb.selectedIndex = 2;
     // Need to call a method in my SpecialsViewController which manages properties and functions of tab with index 2
    }
}
4

1 に答える 1