HelloGameKit WatchKit Extension/TitleWithDetailRowController.swift

/*
     Copyright (C) 2016 Apple Inc. All Rights Reserved.
     See LICENSE.txt for this sample’s licensing information
     
     Abstract:
     Row controller for showing a simple title and detail table row.
 */
 
import WatchKit
 
@objc class TitleWithDetailRowController: NSObject {
    // MARK: IB Outlets
    
    @IBOutlet weak var titleLabel: WKInterfaceLabel!
    @IBOutlet weak var detailLabel: WKInterfaceLabel!
}