問題: 我使用下面的代碼的方法cellForRowAtIndexPath
內部來設置小區中的圖像的大小,但在運行時,圖像被放大到最大高度和寬度表格行將允許。難度中的UITableViewCell
UIImage *_image = [imageDictionary objectForKey:@"image"]; // Get image data
[_image drawInRect:CGRectMake(0,0,50,50)]; // set size
[cell.imageView setImage: _image]; // assign image to cell
cell.imageView.frame = CGRectMake(cell.imageView.frame.origin.x,cell.imageView.frame.origin.y,50,50);
return cell;
問題:是否有控制一個UITableViewCell圖像的尺寸的更強大的方法是什麼?我採取的方法來自其他幾個職位,但由於某種原因,我的代碼中被忽略。
附註:我正在使用Xcode 5並在iOS 7平臺上開發。