ios app extensions - raywenderlich.com · introduction to cloudkit part 6: working wi... nov 7,...

Post on 24-Jun-2020

3 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

iOS App Extensions

Today Extensions: OpenURL

Lightweight Interface

OpenURL

// Application context UIApplication.sharedApplication().openURL(url)

// Extension context extensionContext?.openURL(url, completionHandler: ((Bool) -> Void)?)

extensionContext

Optional property on UIViewController Can use to test for application vs extension

Demo

URL scheme for app Widget – add button, action openURL!

Challenge Time!

top related