2015-05-21 42 views
1

我想在UITableViewCell中設置自己的cellAccessoryType(圖像)。你知道我能做到嗎?我使用的是Swift,Xcode 6.2和iOS 8.2。謝謝你的幫助!設置自己的單元格附件類型

回答

10

試試這個:

// first create UIImageView 
var imageView : UIImageView 
imageView = UIImageView(frame:CGRectMake(20, 20, 100, 320)) 
imageView.image = UIImage(named:"image.jpg") 

// then set it as cellAccessoryType 
cell.accessoryView = imageView 

PS:我強烈建議你升級到6.3.2的XCode和使用的是iOS 8.3 SDK

6

我想你想獲得對附件查看自來水,所以我用按鈕提供這個答案。 如果沒有,請在imageView中使用shargath的答案。

var saveButton = UIButton.buttonWithType(.Custom) as UIButton 
     saveButton.frame = CGRect(x: 0, y: 0, width: 30, height: 30) 
     saveButton.addTarget(self, action: "accessoryButtonTapped:", forControlEvents: .TouchUpInside) 
     saveButton.setImage(UIImage(named: "check-circle"), forState: .Normal) 
     cell.accessoryView = saveButton as UIView 

func accessoryButtonTapped(sender:UIButton) { 

} 
相關問題