我在顯示原型單元格中的圖像時出現問題。目前我只能顯示標籤文字,我想知道我必須做些什麼才能顯示圖像。
這是當前進程的截圖:
我有圖像的URL,但目前只展示它作爲一個標籤:
http://i.stack.imgur.com/P8l5t.png
我想顯示作爲一個圖像。我必須做些什麼才能做到這一點?
ViewController.m提前
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// Retrieve cell
NSString *cellIdentifier = @"BasicCell";
UITableViewCell *myCell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
// Get the location to be shown
Location *item = _feedItems[indexPath.row];
// Get references to labels of cell
myCell.textLabel.text = item.address;
return myCell;
}
感謝。
但是,您甚至沒有*嘗試*在此處添加圖像...您可以添加圖像作爲子視圖或使用單元格的圖像屬性。 – 2014-11-02 19:57:17
我在我的MainStoryBoard中添加了一個imageView。 – JulienKP 2014-11-02 19:58:22
但是在你的cellForRowAtIndexPath中,你只能設置你的單元格的文本標籤屬性...是否item.address是圖片的網址? – 2014-11-02 19:59:35