Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a next-page segue between interface controllers programmatically in Apple Watch App?

Tags:

watchkit

I am creating a apple watch app and not able to call a next page segue between interface controllers programmatically.

like image 361
Rajesh Dangi Avatar asked Jun 04 '15 06:06

Rajesh Dangi


1 Answers

You are correct that there is no way to programmatically trigger a segue in the current version of WatchKit. The only way to programmatically move to another WKInterfaceController in a page-based interface is to call becomeCurrentPage on the controller that you want to appear.

like image 166
Mike Swanson Avatar answered Sep 21 '22 06:09

Mike Swanson