我試圖在應用程序仍在運行時收到推送通知後更改視圖。我試圖在AppDelegate.miPhone - 應用程序仍在運行,接收推送通知=更改視圖
-(void)application:(UIApplication *)application didRecieveNotification:(NSDictionary *)userInfo
{
TestClass *aTestClassViewController = [[TestClass alloc]initWithNibName:@"TestClass" bundle:nil];
[self presentModalViewController:aTestClassViewController animated:YES];
[aTestClassViewController release];
}
使用它。但是它沒有工作。我甚至無法再啓動應用程序。所以我猜這是錯誤的做法。
任何想法的傢伙?我會很感激。