Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 962 Bytes

handoff.md

File metadata and controls

21 lines (14 loc) · 962 Bytes

Handoff

Mac 浏览器打开手机 App 上的 URL

创建一个 NSUserActivity,activityType 设为自己 App 的 Bundle ID,webpageURL 设为需要 mac 浏览器打开的 URL。mac 上如果没有对应 Bundle ID 的 App,则使用默认浏览器打开

eg:

NSUserActivity* myActivity = [[NSUserActivity alloc]
                  initWithActivityType: @"com.company.myapp"];

myActivity.webpageURL = [NSURL URLWithString:@"http://www.google.co.uk"];

References