Skip to content

Instantly share code, notes, and snippets.

@viteinfinite
Created December 3, 2014 10:26
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/71153ea683791078ab8c to your computer and use it in GitHub Desktop.
Save viteinfinite/71153ea683791078ab8c to your computer and use it in GitHub Desktop.
//
// SkiResortTableRowController.swift
// XebiaSki
//
// Created by Simone Civetta on 28/11/14.
// Copyright (c) 2014 Xebia IT Architechts. All rights reserved.
//
import WatchKit
import XebiaSkiFramework
class SkiResortTableRowController: NSObject {
@IBOutlet weak var titleLabel: WKInterfaceLabel!
func configureWithSkiResort(webcam: SkiResort) {
self.titleLabel.setText(webcam.name)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment