Created
December 3, 2014 10:26
-
-
Save viteinfinite/71153ea683791078ab8c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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