1
我使用此功能在我的應用程序再次進入前景後重新開始動畫。 當再次點擊主頁按鈕和活動應用程序時,它工作正常。 但屏幕解鎖時不起作用。如何在屏幕解鎖後重新啓動動畫
restartAnimation被執行,但我不知道而當屏幕解鎖
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(restartAnimation)
name:UIApplicationWillEnterForegroundNotification
object:nil];
您可能想看看這是行不通的此鏈接。 iOS將有多種方式退出並放置在後臺應用程序中! http://stackoverflow.com/questions/3771015/what-method-is-called-when-application-appears-from-background-on-iphone – trumpetlicks
另外,你有沒有試過把NSLog輸出放在你有以上例程從你描述的第二(非工作)狀態看它是否正在運行? – trumpetlicks
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIApplicationDelegate_Protocol/Reference/Reference.html – trumpetlicks