Swift CLLocationManagerのdelegateの際の初期化の場所の意味がわかりません。
swift
1class LocationService: NSObject { 2 private let locationManager = CLLocationManager() 3 private var tag = "" 4 5 override init() { 6 super.init() 7 locationManager.delegate = self 8 } 9 10 convenience init(tag: String) { 11 self.init() 12 self.tag = tag 13 } 14 15 func startUpdating() { 16 print("tag:(tag) startUpdating") 17 locationManager.startUpdatingLocation() 18 } 19 20 func stopUpdating() { 21 print("tag:(tag) stopUpdating") 22 locationManager.stopUpdatingLocation() 23 } 24 25 func checkPermisson() { 26 switch CLLocationManager.authorizationStatus() { 27 case .notDetermined: 28 print("notDetermined") 29 case .restricted: 30 print("restricted") 31 case .denied: 32 print("denied") 33 case .authorizedAlways: 34 print("authorizedAlways") 35 case .authorizedWhenInUse: 36 print("authorizedWhenInUse") 37 } 38 } 39} 40 41extension LocationService: CLLocationManagerDelegate { 42 43 // このメソッドは locationManager.delegate = self を実行したタイミングでまず1回呼ばれる 44 func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) { 45 print("tag:(tag) didChangeAuthorization -> ", status.rawValue) 46 if status == .notDetermined { 47 locationManager.requestWhenInUseAuthorization() 48 } 49 } 50 51 func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) { 52 if let location = locations.last { 53 let latitude = location.coordinate.latitude 54 let longitude = location.coordinate.longitude 55 let timestamp = location.timestamp.description 56 print("tag:(tag) didUpdateLocations -> latitude:(latitude) longitude:(longitude) timestamp:(timestamp)") 57 } 58 } 59 60 func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) { 61 print("tag:(tag) didFailWithError -> ", error) 62 } 63} 64
このクラスを初期化するinitの際に、なぜ
swift
1 override init() { 2 super.init() 3 let locationManager = CLLocationManager() 4 locationManager.delegate = self 5 }
と書かないのでしょうか?
なぜ、初期化するタイミングの際に
swift
1 private let locationManager = CLLocationManager() 2 3 override init() { 4 super.init() 5 locationManager.delegate = self 6 }
initの外に出しているでしょうか?
違いがわかりません。様々なdelegateを見ても全てこの形です。
なぜ、このクラスが必ず、CLLocationManager型のプロパティを持たなければならないでしょうか?
お分かりになる方がいましたら、ご教授よろしくお願い致します。
このクラスがCLLocationManager型のプロパティを使うからじゃないですか? じゃ意味わからんか...
初期化スコープ内でCLLocationManager型のプロパティを宣言したら、初期化完了時に消滅してしまうから。
あなたの回答
tips
プレビュー