コードでアクティブになっている UIViewController シーンを確認することはできますか?
アプリにプッシュ通知が届き、ユーザーがどのビューにいるかに応じて、次のようにさまざまなことをしたいと考えています。
AppDelegate:
- (void)application:(UIApplication*)application didReceiveRemoteNotification:(NSDictionary*)userInfo
{
if (tableViewController == active)
//get data from server
else if (detailedViewController == active)
//Get Image from server
}
ありがとう