I'm developing an app for Apple Watch that there is a scene with a table. When I select a row it pushes another scene perfectly. However when I added another scene and created the relationship of next scene with the first one the rows stopped working.I had to change the transition from push to modal and it worked again. My question is: is it the right behaviour? or is it a bug? Or am I missing something?
Segue must be modal with page navigation
105 Views Asked by Hola Soy Edu Feliz Navidad At
1
There are 1 best solutions below
Related Questions in STORYBOARD
- Different storyboard's entry points depending on a parameter
- Error in main.storyboard
- What is the best practice when making a storyboard for iPhone and iPad?
- Xcode Interface Builder loading XIB file show view with transparency
- How can i get the imageView's size from storyboard?
- Missing icon and storyboard files, iOS 7 and 8, Xcode 6
- WP8.1 Storyboard Scale while Translate Manipulation
- Why won't my storyboard work on the iphone?
- xcode 6 swift cant add existing objects to different device storyboard
- Connecting to Superclass Properties with Storyboards
- How to make Object ID human-readable?
- Segue must be modal with page navigation
- Images "sink" animation
- Why does the window background remain black in fullscreen?
- Implement a dropdown history in a UITextField or similar component
Related Questions in SEGUE
- How to segue to View Controller from skview
- iOS - Logout functionality
- After selecting a TableView Cell, pass the data back to the previous View Controller in Swift
- Swift ios viewDidLoad or viewDidAppear
- swift: select dynamic table cell and either push or pop view controller depending on stack
- terminating with uncaught exception of type NSException in Swift
- Segue animation doesn't align screen correctly
- Swift segue performed multiple times
- One UIAlertController function with multiple actions - is this possible?
- performSegueWithIdentifier method is very slow for modal segue
- Calling prepareforSegue from a UIButton?
- Segue must be modal with page navigation
- iOS Segue - Left to Right -
- Custom cell segue with data pass error - Swift
- After programmatically segueing, The ViewController has not been dismissed
Related Questions in WATCHKIT
- Apple Watch: WKInterfaceLabel doesn't update on device, but fine on simulator
- Display both alertTitle and AlertBody on a custom WatchKit notification
- Check if image with name is set (WatchKit)
- AppleWatch - "attempt to insert nil" when calling WKInterfaceDevice addCachedImage
- Why is willActivate called twice when watch app enters foreground?
- Detect WKInterfaceButton pressed continuously?
- How can I setup the distribution build to get watchkit App working?
- Play sound with WatchKit 2
- How to record audio and play it with WatchOS2?
- change initial interface controller in watchKit
- Clear labels, Images in WatchKit after didDeactivate (Glance and InterfaceController)
- How do I call the CoreData proxy framework from WatchKit Extension?
- Segue must be modal with page navigation
- How to handle this error when requesting data from watchkit
- WKInterfaceTable & setNumberOfRows get crash "unexpectedly found nil while unwrapping an Optional value"
Related Questions in UISTORYBOARDSEGUE
- performSegueWithIdentifier method is very slow for modal segue
- Segue must be modal with page navigation
- iOS segue freeze for many seconds before showing new view
- Push segue with Storyboards
- How to make SWRevealViewController slide "over" the main view controller not "push" it out?
- How to pass a pfimageview from one controller to another in storyboard with swift and parse.com
- Best way to create ViewController
- Unwind segue not transitioning properly
- Passing data to destination view controller with performSegue
- programmatically load viewController class
- Error while adding Tab bar controller between two view controllers? Terminating app due to uncaught exception 'NSInvalidArgumentException'
- Pausing segue until location access is granted/denied
- How to move through Views without reload them again if I return back Swift
- How to set Custom size to Present Modally ViewController
- Where could I find the source code of UIStoryboardSegue.swift
Related Questions in APPLE-WATCH
- Apple Watch: WKInterfaceLabel doesn't update on device, but fine on simulator
- Display both alertTitle and AlertBody on a custom WatchKit notification
- Handoff icon not disappearing from the phone
- Cocoapods library not found for apple watch extensions
- Programmatic Access to Apple Watch Crown
- Why is willActivate called twice when watch app enters foreground?
- Apple Watch and iphone communication
- How to remove a partially installed app on Apple Watch
- change initial interface controller in watchKit
- Segue must be modal with page navigation
- In Xcode I see (no paired Apple Watch) even though the watch is paired and the watch's UDID is registered
- How to handle this error when requesting data from watchkit
- How to hide API keys in GitHub for iOS (SWIFT) projects?
- Apple watch clear images caching
- Why does UIAlert generated by UILocalNotification display "Options" instead of action title?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Page-based navigation and hierarchical navigation are exclusive – you can't mix and match unless you present a new interface modally. This is expected behaviour.