I'm trying to customise title in the WK Status Bar of my first Controller.
The correct way should be this:
public func setTitle(title: String?) // title of controller. displayed when controller active
so
WKInterfaceController.setTitle("my Title")
but using this code, xCode says Cannot convert value of type 'String' to expected argument type 'WKInterfaceController'
. What's wrong?