Trying to get button to spin in WatchKit
the code i'm using works just fine in swift for iPhone apps but not in the WatchKit 7.0 beta. the outlets and actions are different. I'm not sure what needs to change to make it work in WatchKit. please help! import WatchKit import Foundation class InterfaceController: WKInterfaceController { @IBOutlet var spinButton: WKInterfaceButton! var isRotating = false override func awakeWithContext(context: AnyObject?) { super.awakeWithContext(context) // Configure interface objects here. } override func willActivate() { // This method is called when watch view controller is about to be visible to user