這是我所得到的,當我後,我點擊細胞啓動我的應用程序我如何在tableview中保留圖片大小?
圖像變得更大
我的代碼是這樣的
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("myCell", forIndexPath: indexPath)
// Configure the cell...
cell.imageView?.sd_setImageWithURL(NSURL(string: imageArray[indexPath.row]), placeholderImage:UIImage(named: "pin.png"))
cell.imageView?.frame = CGRectMake(0, 0, 50, 50)
return cell
}
imageArray只是一串圖片網址。請幫助
在此先感謝
嘗試設置口罩,以邊界來的ImageView和Aspect填充圖像 – vishnuvarthan
' cell.imageView?.clipsToBounds = true;'嘗試這個 – Shahrukh
也嘗試用這個替換你的單元格 - 讓cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier(「myCell」,forIndexPath:indexPath)作爲UITableViewCell – vishnuvarthan