Is it possible to detect selected row index with force touch? Did force touch in tableView current row is highlighted. But i can't take info about him when context menu appears. TableView method -didSelectRowAtIndex: not called with this event.
Detect selected row with force touch watchkit
336 Views Asked by Ivan Novikov At
1
There are 1 best solutions below
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 SELECTED
- In Android, ensuring only pre-decided users can only use the app
- Echo Selected base on $_GET value from a dynamic select box
- How to change emphasis on confirm javascript buttons?
- Unable to set default selected option in selection tag
- How to get selected option using Selenium WebDriver with Python?
- Changing UITabBarItem image's color
- Avoid UIButton inverted colours when selected
- JCheckBox Always Returning True/False But Not Changing
- jquery combobox +set selected value to a combobox array
- How can I display selected value in dropdownlist in YII framework?
- UITableViewCell Selected Background Color on Multiple Selection
- How to display the selected value in dropdown from datastore using java GAE?
- Angular Js: Select box set selected value
- Foreach role_id HTML select options
- JQuery Accordion open panel based on .class
Related Questions in WATCHOS-2
- animateWithDuration lacks completion block, WatchOS 2
- watchOS 2 Heart Rate Sensor
- Using Core Data with watchOS 2.0
- Can I use ClockKit with a custom background image and complications at the same time?
- presentAudioRecordingControllerWithOutputURL not recognized in WatchKit project
- Code signing identities not found for watchos 2.0
- WatchOS2 Heart Rate
- NSUserDefaults not working on Xcode beta with Watch OS2
- watchOS 2 new API and Sample Code
- watchOS 2 working with CocoaPods
- Phone call from Apple Watch with openSystem API?
- Imported Embedded Framework into Watch Extension
- xcode 7 beta stuck at "Running xxxxx WatchKit App on iPhone 6"
- Cannot add image to cache in watchOS 2?
- Xcode 7 supporting watch OS1 and OS2
Related Questions in WKINTERFACETABLE
- WKInterfaceTable & setNumberOfRows get crash "unexpectedly found nil while unwrapping an Optional value"
- Need Help for WKInterfaceTable
- WatchKit-Distinguish among tables in table(table, didSelectRowAtIndex)
- WKInterfaceTable detect which row selected
- Transfer data from WKInterfaceTable to another WKInterfaceController
- Watchkit: table with two templates in dynamic rows
- WKInterfaceTable is not getting populated with Codable data
- Proportional table row height for 38mm Apple Watch
- Does setting setNumberRows de-allocate the unneeded rows?
- Apple Watch v1.01 Voice Over Accessibility of WKInterfaceTable rows doesn't work
- Different menu items for each row on a table
- Non-scrollable view above WKInterfaceTable
- Apple watch: Creating mail app style rows in WKInterfaceTable
- Change color of row programmatically in WatchKit
- Error when updating a WKInterfaceTable while an alert is shown
Related Questions in FORCE-TOUCH
- iOS WKWebView Peek and Pop on an Image
- Test iOS9 SDK using Swift with older SDK version
- Is it possible to use a force touch (3D Touch) with the standard controller UIImagePickerController?
- Force Touch TableView Cell Rounded Peek and Pop - iOS Swift
- Is there a way to negate the iOS force-touch expansion of IMGs?
- AppStore - iPhone 6S or iPad Pro or ForceTouch device only
- Detect selected row with force touch watchkit
- Implementing 3D-Touch with swift on View
- Handle ForceTouch in WatchKit
- 3d Touch Not Available on iPhone 6s+
- How to implement Peek & Pop Feature of specific row of a table manually via code?
- Unable to launch another app from my app's shortcut menu
- Force Touch/ 3D Touch in XCUITest
- 3D Touch Peek View Like Apple Music
- Can I add feedback (notch) to a gesture on iOS using 3D Touch?
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?
The only thing you can handle programmatically with the Force Touch is the Context Menu and this menu is associated with a specific controller, more information you will find following the link.
About the row highlighting: When you start tapping the system doesn't know what the real action is - the regular touch or the force one. So it is starting to highlight a specific area and only later find out what was the action.