Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Xcode によると、PHAsset には「場所」メンバーがありません。
Swiftの救済策は何ですか?
簡単な答え: CoreLocation をインポートするのを忘れている可能性があります。
import Photos import CoreLocation let asset: AnyObject? = nil if let asset = asset as? PHAsset { let location = asset.location }
CoreLocation インポートを削除すると、エラーを再現できます。