I added a WKInterfacePicker to the storyboard and connected it to an IBOutlet in the interface controller. While running the application, it shows an error message in the console:
Unknown property in Interface description ('watchPicker') for controller
Code:
@interface InterfaceController()
{
__unsafe_unretained IBOutlet WKInterfacePicker *watchPicker;
}
@end
How can I fix it?