我有JSON圖像。致命錯誤:索引超出範圍:Swift
let imagestring : String? = (myData as AnyObject).value(forKey: "Post_mid_image") as? String
if imagestring != nil{
let imageTrueString = "https://www.zdoof.com/" + imagestring!
self.imageStringArray.append(imageTrueString)
print(self.imageStringArray)
}
當我試圖把它放在表視圖:
let myImage = cell.viewWithTag(30) as! UIImageView
let myImageString : String? = imageStringArray[indexPath.row]
if myImageString != nil{
let ImageUrl = URL.init(string: myImageString!)
myImage.kf.setImage(with: ImageUrl)
}
它顯示如下錯誤:
致命錯誤:索引超出範圍
我的代碼有什麼問題?
你沒」 t發佈你的'numberOfRowsForSectio的代碼n:'方法,但是這裏發生的是你試圖顯示一個並不存在於你的'imageStringArray'中的行。 –
那麼,在這裏做什麼,請幫助 –
你可以發佈的代碼,返回您的表的行數? –