「Swift Sample」の版間の差分
ナビゲーションに移動
検索に移動
1行目: | 1行目: | ||
− | | [[Swift]] | [[Xcode]] | [[Mac]] | | + | | [[Swift]] | [[SwiftUI]] |[[Xcode]] | [[Mac]] | |
==[[Swift]] Sample== | ==[[Swift]] Sample== | ||
2021年3月22日 (月) 08:53時点における版
| Swift | SwiftUI |Xcode | Mac |
Swift Sample
Network
データ取得
let url = URL(string: "https://www.typea.info/blog/")! let task = URLSession.shared.dataTask(with: url) { data, response, error in if let error = error { print("\(error)\n") return } guard let data = data, let response = response as? HTTPURLResponse else { print("no data or no response.") return } if response.statusCode == 200 { if let text = String(bytes: data, encoding: .utf8) { print(text) } } } task.resume()
MacOSでエラーの場合
Error Domain=NSURLErrorDomain Code=-1003
© 2006 矢木浩人