Questions tagged [handoff]

Handoff is a capability introduced in iOS 8 and OS X v10.10 that is designed to facilitate easy transfer of user activities among multiple devices associated with the same user.

Handoff is a capability introduced in iOS 8 and OS X v10.10 that is designed to facilitate easy transfer of user activities among multiple devices associated with the same user.

Handoff enables the user to switch from one device to another and continue an ongoing activity seamlessly, without needing to reconfigure each device independently. For example, if a user is browsing a long article in Safari on a Mac, he or she can move to a nearby iOS device that’s signed in to iCloud using the same Apple ID and choose to have the same webpage automatically opened in Safari on iOS, with the same scroll position as on the original device.

64 questions
1
vote
2 answers

NSUseractivity not working from apple watch to iphone app

I am implementing handoff from an apple watch app to the destination app on my iphone. On one of the WatchKit Extension viewcontrollers i have the following code: myActivity = [[NSUserActivity alloc] …
Rashid
  • 762
  • 1
  • 9
  • 30
1
vote
0 answers

Handoff icon not disappearing from the phone

I create a handoff request for my apple watch app with the following code: [self updateUserActivity:@"..." userInfo:selectedTopic webpageURL:[NSURL URLWithString:nil]]; And I handle the request in the phone AppDelegate with the following code: -…
andre
  • 7,018
  • 4
  • 43
  • 75
1
vote
1 answer

How to Pass an NSURL from Watchkit - > Native Cordova app & open browser with Javascript

I have a working cordova app and have built a Watchkit app. Aware that I can't call the native app to foreground or do much of anything with its inner workings, I thought to use Handoff to simply send a user, via Safari, to a webpage which basically…
brianfit
  • 1,829
  • 1
  • 19
  • 34
1
vote
0 answers

Handoff action disappears after a period of time, need to call periodically?

I'm implementing Handoff in an app. In the app I've created a Handoff controller global to the entire application, so I only call [userActivity becomeCurrent] only once. However, the issue I am having is that the handoff icon (app icon in lock…
Davy Li
  • 603
  • 2
  • 9
  • 16
1
vote
3 answers

How is user activity info transferred in Handoff?

How is user activity info transferred in Handoff? The doc suggests that larger-scale data synchronization is handled via iCloud but doesn't say what mechanism is used for small data.
Boon
  • 40,656
  • 60
  • 209
  • 315
0
votes
0 answers

I am a designer, is there any reason to use unitless line-height over pixel? On handover is it preferred to pixel?

I am working on a product and am curious is there a best practice or preferred way for front end on to receive line-height. Unitless over pixel and why? I tend to use multiples of 4, 8, 12, 16 etc for spacing in my grid and organization. Is it…
keano12
  • 1
  • 1
0
votes
0 answers

Live agent hand-off using Azure chat bot

I am working on a requirement where I need to transfer the chat to a live agent in case QnA has no solution to the user's query. I know that this is possible using Power virtual agents in Azure but I need to know if this can be achieved without…
Sharvani
  • 61
  • 1
  • 2
  • 12
0
votes
2 answers

How to share attachments from user to agent (Human handoff) using Bot?

i have bot made using c#. It has the feature of human off. We have integrated the solution provide by tompanna of human handoff where a agent can talk to single user at a time.Here the link of solution we used for human handoff…
0
votes
0 answers

Handoff Notification from Watch to Phone, but payload is missing

I have an app, that supports local and push notifications. Those notifications include a url. Once the user opens the notification, the web page for the url should be loaded. This works. However the same notification can also be received on the…
gebirgsbärbel
  • 2,327
  • 1
  • 22
  • 38
0
votes
2 answers

Sirikit and parent app communication in ios 10 : Handoff

I am using Sirikit to integrate with my payment domain app where I need to interact with the app. I read Apple documentation, they asked to use common frameworks. Is it possible to use handoff? if yes then how? How can I call the other…
0
votes
0 answers

Handoff between Watch and Phone Parse.com doesn't show user as logged in

So I've pretty much finished my first WatchKit app for one of my iOS apps, in which I use Parse.com as a backend. I've setup a shared app container and shared keychain as per the Parse documentation and everything is working fine. However I started…
Baza207
  • 2,123
  • 1
  • 22
  • 40
0
votes
3 answers

Handoff and Universal Links failed on iOS 9

I am setting up my apple-app-site-association file follow this tutorial: Handoff works on iOS 8 but handoff does not work on iOS 9. I setup a free hosting site and upload the apple-app-site-association file onto the root of website:…
0
votes
1 answer

Handoff does not work with iOS 9 devices

Trying to force Handoff functionality to work on iPhone 5 and iPad Air with iOS 9 devices and encounter issues that I think is iOS9-related - cannot check on iOS 8 because I have no devices with this system. Problem: I am opening app on first…
Tomasz Szulc
  • 4,217
  • 4
  • 43
  • 79
0
votes
1 answer

WatchKit: Handoff from static interface of Long Look?

Our app has implemented the handoff functionality between push notification on the Apple Watch (in our WKUserNotificationInterfaceController subclass) and the main iPhone app. It works with dynamic interface of the notification long look. However,…
zavié
  • 4,301
  • 2
  • 34
  • 46
0
votes
2 answers

How do I implement per-page handoff in a WatchKit app on Watch OS 1.0.1?

Watch OS 1.0.1 changed the lifecycle for page-based apps: now willActivate/didActivate get called for the next page to preload it. I was previously calling updateUserActivity:userInfo:webpageURL: in each of my page's willActivate methods, supplying…
Hilton Campbell
  • 6,065
  • 3
  • 47
  • 79