2017-10-12 85 views
2

我試圖按照this 但是,當我做cell.checkmarkView.checked = true它返回零,所以一切都崩潰。 這裏是我的MyCollectionViewCell:UICollectionViewCell checkmark return nil

class MyCollectionViewCell: UICollectionViewCell { 

@IBOutlet weak var myLabel: UILabel! 

var checkmarkView: SSCheckMark! 

override init(frame: CGRect) { 
    super.init(frame: frame) 
    checkmarkView = SSCheckMark(frame: CGRect(x: frame.width-40, y: 10, width: 35, height: 35)) 
    checkmarkView.backgroundColor = UIColor.white 
    contentView.addSubview(checkmarkView) 
} 

required init?(coder aDecoder: NSCoder) { 
    super.init(coder: aDecoder) 
    //fatalError("init(coder:) has not been implemented") 
}} 

你能幫助我瞭解什麼是錯的?

我的CollectionView cellforitemat ...

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath as IndexPath) as! MyCollectionViewCell 
    cell.myLabel.text = self.listCivics()[indexPath.item] 
    cell.layer.borderWidth = 1 
    cell.checkmarkView.checked = true 
    return cell 
} 
+0

「cell.checkmarkView.checked = true它返回nil」什麼返回nil?你是否輸入了'override init(frame:CGRect){'? – Larme

+0

如果你是在談論MyCollectionViewCell是的,我做你可以看到 – John

+0

順便說一句:最好是使用內容視圖的「邊界」而不是「框架」,你應該設置'autoresizingMask'。我會適當地更新我的答案。 – clemens

回答

0

你的細胞是從故事板加載。因此,init(frame:)未被調用。您還應該初始化init(coder:)中的複選標記。

required init?(coder aDecoder: NSCoder) { 
    super.init(coder: aDecoder) 
    let contentBounds = contentView.bounds 
    checkmarkView = SSCheckMark(frame: CGRect(x: contentBounds.width - 40, y: 10, width: 35, height: 35)) 
    checkmarkView.backgroundColor = UIColor.white 
    // adapt to changes in cell size 
    checkmarkView.autoresizingMask = [ .flexibleLeftMargin, .flexibleBottomMargin ] 
    contentView.addSubview(checkmarkView) 
} 
相關問題