Skip to content

Instantly share code, notes, and snippets.

@mnaruse
Created July 8, 2020 17:53
Show Gist options
  • Save mnaruse/66d47fa1f821a86e91d659b4c83dab45 to your computer and use it in GitHub Desktop.
Save mnaruse/66d47fa1f821a86e91d659b4c83dab45 to your computer and use it in GitHub Desktop.
WWDC20: What's new in location.
// iOS14
// アプリがどれだけ正確にユーザーの位置を知ることができるかを示す新しいインスタンスプロパティ
let accuracyAuthorization: CLAccuracyAuthorization { get }
enum CLAccuracyAuthorization {
case fullAccuracy // iOS14以前からのデフォルト
case reduceAccuracy // New
}
@mnaruse
Copy link
Author

mnaruse commented Jul 8, 2020

first commit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment