Created
March 23, 2015 18:51
-
-
Save quintonwall/d99613edebed47e8af08 to your computer and use it in GitHub Desktop.
TaskRowController class for Salesforce Wear Apple Watch Webinar
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
// | |
// TaskRowController.swift | |
// SalesforceWatch | |
// | |
// Created by Quinton Wall on 3/23/15. | |
// Copyright (c) 2015 Salesforce, Inc. All rights reserved. | |
// | |
import Foundation | |
import WatchKit | |
class TaskRowController: NSObject { | |
var recordid: String! | |
@IBOutlet weak var priorityImage: WKInterfaceImage! | |
@IBOutlet weak var subject: WKInterfaceLabel! | |
@IBOutlet weak var status: WKInterfaceLabel! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment