Skip to content

Instantly share code, notes, and snippets.

@quintonwall
Created March 23, 2015 18:51
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 quintonwall/d99613edebed47e8af08 to your computer and use it in GitHub Desktop.
Save quintonwall/d99613edebed47e8af08 to your computer and use it in GitHub Desktop.
TaskRowController class for Salesforce Wear Apple Watch Webinar
//
// 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