我有一個問題。我正在使用swift 2.0此代碼在viewDidLoad斯威夫特 - 圖像隱藏
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 100.0
我使用單元格中的內容的標籤和圖像。當內容沒有圖像時,我看到單元格中的空白空間。
如果內容沒有任何圖像,我怎麼能隱藏圖像和刪除空的空間。
我嘗試使用此代碼,但不能正常工作
cell.contentImage.hidden = true
,我使用:
let thumb = UIImage(named: "dreamImage")
cell.dreamImage.image = thumb
if let thumbnailx = object?["image"] as? PFFile {
cell.dreamImage.file = thumbnailx
cell.dreamImage.loadInBackground()
}
而且我使用的解析和PFImageView。我嘗試
if thumbnailx == nil {
cell.dreamImage.hidden = true
}else {
cell.dreamImage.hidden = false
}
但是我收到一個警告「Pffile永遠不能無」
我怎樣才能解決這個問題。 謝謝
請不要解決它後更改你的問題的意思。您隨時可以通過後續問題創建新帖子。 –