URLからコレクションビューに画像を取得しようとしています。表示可能な画像の数はアレイの数に依存します。問題は、私は "戻りself.imageArray.count" を書くときにはnilを返しているコレクションへのURL画像
class CollectionViewController: UICollectionViewController {
@IBOutlet weak var searchBox: UITextField!
var imageArray:[String] = []
override func viewDidLoad() {
super.viewDidLoad()
}
let link = "https://www.googleapis.com/my_link_is_here"
guard let url = URL(string: link) else {
print("Error: cannot create URL")
return
}
let request = URLRequest(url: url)
URLSession.shared.dataTask(with: request) { data, response, error in
guard error == nil else {
print("error calling GET on /todos/1")
print(error!)
return
}
do{
guard let json = try JSONSerialization.jsonObject(with: data!, options: []) as? [String : Any] else {
print("\(error?.localizedDescription)")
return
}
//print("The todo is: " + json.description)
guard let todotitle = json["items"] as? [Any] else {
print("Could not get todo title from JSON")
return
}
let arrcnt = todotitle.count
var i = 0
while (i < arrcnt){
guard let todotitle1 = todotitle[i] as? [String: Any] else {
print("Could not get todo title1 from JSON")
return
}
guard let todotitle2 = todotitle1["image"] as? [String : Any] else {
print("Could not get todo title2 from JSON")
return
}
guard let todotitle3 = todotitle2["thumbnailLink"] as? String else {
// continue
print("Could not get todo title3 from JSON")
return
}
self.imageArray.append(todotitle3)
print(self.imageArray)
i += 1
}
}catch{
print("error trying to convert data to JSON")
return
}
}.resume()
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
// MARK: UICollectionViewDataSource
override func numberOfSections(in collectionView: UICollectionView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of items
return self.imageArray.count
}
:
は、ここに私のコードです。空の配列である配列の初期化された値をとります。最後の配列が追加された後にどのように数えられるか
imageArrayの宣言を表示できますか? –
クラスCollectionViewController:UICollectionViewController { @IBOutlet weak var searchBox:UITextField! のvar imageArray:[文字列] = []のviewDidLoad FUNC オーバーライド(){ super.viewDidLoad() – Gaurav
それがあなたの質問を編集する代わりに、コメントにあなたのコードを追加しないでください。 –