728x90
extension String{
func convertToDictionary() -> [String: Any]? {
if let data = data(using: .utf8) {
return try? JSONSerialization.jsonObject(with: data, options: []) as? [String: Any]
}
return nil
}
}
728x90
'난 iOS개발자 > iOS' 카테고리의 다른 글
| 정확한 위치 정보 (0) | 2022.02.16 |
|---|---|
| 위치 정보 가져오기(CoreLocation, CLLocationManager) (0) | 2022.02.14 |
| 현재 네트워크 정보 가져오기 CNCopyCurrentNetworkInfo (0) | 2022.01.07 |
| NEHotspotNetwork를 이용한 현재 Wi-Fi 상태 가져오기 (0) | 2021.12.20 |
| NEHotspotConfigurationManager를 이용한 Wi-Fi 연결하기 (0) | 2021.12.20 |