InterfaceController.swift 675 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // InterfaceController.swift
  3. // watchOSSwiftTest Extension
  4. //
  5. // Created by Sinoru on 2015. 8. 19..
  6. //
  7. //
  8. import WatchKit
  9. import Foundation
  10. class InterfaceController: WKInterfaceController {
  11. override func awake(withContext context: Any?) {
  12. super.awake(withContext: context)
  13. // Configure interface objects here.
  14. }
  15. override func willActivate() {
  16. // This method is called when watch view controller is about to be visible to user
  17. super.willActivate()
  18. }
  19. override func didDeactivate() {
  20. // This method is called when watch view controller is no longer visible
  21. super.didDeactivate()
  22. }
  23. }