Questions tagged [3dtouch]

Use this tag when developing apps that use the 3D Touch sensitivity feature on newer Apple Devices (iPhone 6s / 6s Plus and newer).

3D Touch is a new feature in Apple's iPhone 6s and 6s Plus that allows for depth sensitivity.

From the Apple iPhone 6s page:

3D Touch

The next generation of Multi‑Touch.

iPhone 6s introduces an entirely new way to interact with your phone. For the first time, iPhone senses how much pressure you apply to the display. In addition to familiar Multi‑Touch gestures like Tap, Swipe, and Pinch, 3D Touch introduces Peek and Pop. This brings a new dimension of functionality to the iPhone experience. And when you use 3D Touch, your iPhone responds with subtle taps. So not only will you see what a press can do — you’ll feel it.

Not to be confused with , which has one fewer sensitivity level.

361 questions
0
votes
1 answer

How to updated 3D Touch Quick Actions localized Subtitle?

I am adding all my 3D Touch actions in my app delegate but how can I update the subtitle of one of the actions throughout my app?
Nick Lasta
  • 121
  • 1
  • 8
0
votes
1 answer

Diference between 2 GestureRecognizer

I have 2 GesturerRecognizers, one is a custom 3DTouch and another one is the single UITapGestureRegognizer. I'd like to make that if you tap once it performs a segue and if you go trought the 3dtouch one you get another view. I have tried lot of…
Sergio
  • 82
  • 7
0
votes
0 answers

Calling Ti.App.getArguments() crashes app when launched via new App Shortcuts

I am testing out the new support for Application Shortcuts as announced on the forums here: http://www.appcelerator.com/blog/2015/11/ios-9-3d-touch-sample-app/ I have the shortcuts showing when I press on the app icon - perfect. However as soon as…
Mobilizr
  • 11
  • 2
0
votes
1 answer

Call IBAction in App Delegate

I want to add 3d touch home screen shortcuts to my objective c app. The main part of my app functions when a UIButton is pressed. This calls the method in the ViewController.h and ViewController.m - (IBAction)StartScanning:(id)sender; This allows…
user5394344
  • 85
  • 2
  • 8
0
votes
1 answer

Is it possible to simulate 3D touch in macmini?

I am using mac mini for application development. I am aware with the apple's 3D Touch and its availability on simulator as well. But I think its simulation is available with MacBook only using a Force Touch trackpad. Is it possible to simulate 3D…
cjd
  • 549
  • 3
  • 11
0
votes
1 answer

3D Peek and POP in swift

I'm trying to implement 3D Touch Peek and Pop in my swift code. When the user presses deeper on the peek view, array of preview actions will appear (Share, Update, Delete). What I need is when user select Update action will move to UpdateView…
0
votes
1 answer

3DTouch peek and pop with UIButton programmatically

So I have a ViewController that displays a x y graph every point is a programmatically UIButton and when is pressed it displays an alert. I want to know if it is possible to use 3DTouch peek and pop to press hard in the UIButton where it sends you…
user2822413
  • 97
  • 4
  • 9
0
votes
1 answer

Using 3D touch peek and pop with Longpress

I'm trying to emulate the 3D touch peek and pop for all devices (like Instagram) - so show the peek and pop at a longpress gesture. Is this possible? I found PeekView but so far I'm finding it impossible to incorporate this with my Objective C app…
vanilla_splsh
  • 153
  • 1
  • 12
0
votes
1 answer

iOS Check 3D Touch enable in settings

In iPhone 6S, from settings/Accessibility/3D Touch user can able to enable/disable 3D touch option. I have tried UIForceTouchCapabilityto find out 3D touch enable or disable.. typedef NS_ENUM (NSInteger, UIForceTouchCapability ) { …
Shohrab
  • 546
  • 6
  • 21
0
votes
1 answer

iOS Safari pin link to homescreen: 3D touch options

As specified in the Apple developer library, Safari allows developers to specify icons for home screen quick links to websites:
JimmyBanks
  • 4,178
  • 8
  • 45
  • 72
0
votes
1 answer

layoutAttributesForItemAtIndexPath doesn't return the actual position when performing peek and pop

I am trying to implement Peek and Pop to preview the image on photo library with the following code: func previewingContext(previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? { if let…
Danny Wong
  • 11
  • 5
0
votes
2 answers

UITouchType for iOS9.1

iOS introduced UITouchType in iOS9 which provides the UITouchTypeStylus constant. Will this constant only work for 3D touch device like iPad Pro or is it available on any iOS device?
Arun Gupta
  • 2,628
  • 1
  • 20
  • 37
0
votes
1 answer

touchedMoved: cancelled by movement (3d touch)

Using a subclassed UIView and overriding touchesBegan:, touchesMoved: and touchesEnded:. Done this many times with success, but now that I'm working with 3D Touch enabled devices, my movements are being cancelled by the movement they should receive.…
Miles Alden
  • 1,542
  • 1
  • 11
  • 21
0
votes
3 answers

3D touch shortcut to a tab view and then performing a segue

I am having an issue using the 3D touch shortcuts inside my application. My app uses tabs but I would like to redirect the user into a tab then also into another segue when they press the create wish list button. Here is a picture of my…
onemillion
  • 682
  • 5
  • 19
0
votes
1 answer

3D touch home screen actions, Launchoptions is nil always even after entering from

Launch options is always nil. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { //Launch options is always coming nil //even when I launch from 3D touch shortcut icon …