Skip to content

Instantly share code, notes, and snippets.

@viteinfinite
Created December 3, 2014 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viteinfinite/1fbfd3c2dd379d5c4f5c to your computer and use it in GitHub Desktop.
Save viteinfinite/1fbfd3c2dd379d5c4f5c to your computer and use it in GitHub Desktop.
//
// InterfaceController.swift
// XebiaSki WatchKit Extension
//
// Created by Simone Civetta on 03/12/14.
// Copyright (c) 2014 Xebia IT Architechts. All rights reserved.
//
import WatchKit
import Foundation
import XebiaSkiFramework
class InterfaceController: WKInterfaceController {
private var dataSource = SkiResortDataSource()
@IBOutlet weak var mainTable: WKInterfaceTable!
override init(context: AnyObject?) {
super.init(context: context)
reloadTableData()
}
func reloadTableData() {
mainTable.setNumberOfRows(self.dataSource.count, withRowType: "SkiResortTableRow")
for var index = 0; index < self.dataSource.count; ++index {
let row = mainTable.rowControllerAtIndex(index) as SkiResortTableRowController
row.configureWithSkiResort(self.dataSource[index])
}
}
override func willActivate() {
// This method is called when watch view controller is about to be visible to user
super.willActivate()
NSLog("%@ will activate", self)
}
override func didDeactivate() {
// This method is called when watch view controller is no longer visible
NSLog("%@ did deactivate", self)
super.didDeactivate()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment