无法分配到' xxx'在' self'

时间:2014-08-22 13:33:40

标签: ios swift xcode6-beta6

我收到了这个编译器错误:无法在'self'中分配给'sci'

class LCCVC: UICollectionViewCell {

    override func touchesEnded(touches: NSSet!, withEvent event: UIEvent!) {
        super.touchesEnded(touches, withEvent: event)

        sci = nil
    }
}

sci是在其他文件中声明的全局变量:

var sci: NSManagedObject?

1 个答案:

答案 0 :(得分:1)

我在该类中有一个名为sci()的方法,导致编译错误。