1
A
回答
4
趕上前臺通知:
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
NSNotificationCenter.defaultCenter().addObserver(self, selector: "willEnterForeground:", name: UIApplicationWillEnterForegroundNotification, object: nil)
}
func willEnterForeground(notification: NSNotification!) {
// do whatever you want when the app is brought back to the foreground
self.tableView.reloadData()
}
deinit {
// make sure to remove the observer when this view controller is dismissed/deallocated
NSNotificationCenter.defaultCenter().removeObserver(self, name: nil, object: nil)
}
}
刷新您的實現代碼如下:
override func viewDidLoad() {
super.viewDidLoad()
self.tableview.reloadData()
}
相關問題
- 1. 在按鈕上打開應用程序
- 2. 從Testflight開始時,應用程序崩潰打開按鈕
- 3. Android應用程序每次關機時單擊我的按鈕
- 4. 每次點擊按鈕時應用程序崩潰?
- 5. Android應用程序:按下按鈕並打開新佈局
- 6. 在按鈕點擊時打開另一個應用程序?
- 7. 應用程序未打開時處理後退按鈕事件
- 8. 當應用程序欄打開時使按鈕可點擊
- 9. 安裝APK後禁用打開按鈕時無法打開應用程序
- 10. 如何在用戶按下按鈕時打開「設置」應用程序?
- 11. 每當按下按鈕時,應用程序崩潰
- 12. 每當我按下後退按鈕時,應用程序停止
- 13. 當按下多次倒帶按鈕時,應用程序崩潰
- 14. 當按鈕按下兩次時,應用程序停止android
- 15. 沒有打開應用程序一段時間後按下按鈕時,Android應用程序崩潰?
- 16. 如何在按下黑莓按鈕時保持phonegap應用程序打開
- 17. 在按下主頁按鈕後打開應用程序時強制關閉
- 18. 應用程序在關閉/重新打開時崩潰,然後按下按鈕
- 19. 當應用程序重新打開時,在IOS中保持按鈕被按下
- 20. 每60秒編程一次'按'按鈕
- 21. 從Windows按鈕中打開WPF應用程序按鈕單擊事件
- 22. 每次按下按鈕時打印到陣列Xcode:
- 23. 打開應用程序與鍵按
- 24. 使用按鈕標題打開電話應用程序
- 25. 允許我的應用程序用相機按鈕打開
- 26. 用按鈕打開關於(應用程序名稱)
- 27. 打開時按鈕的Android
- 28. 按下按鈕時UIViewcontroller無法打開
- 29. 如何在每次打開應用程序時重新啓動應用程序?
- 30. Facebook按鈕片段不打開並終止應用程序
歡迎堆棧溢出!你可以請帖,你已經嘗試過嗎?請提供[最小,完整和可驗證示例](http://stackoverflow.com/help/mcve)。 – FelixSFD
把它放在'viewWillAppear()'中。 – shallowThought