나는 다음과 같은 방법으로 UISwitch
을 추가 해요 :'NSObject ->() -> PostFeed'값을 예상 인수 유형 'AnyObject?'로 변환 할 수 없습니다.
let anonSwitch : UISwitch = {
let mySwitch = UISwitch()
mySwitch.on = false
mySwitch.setOn(false, animated: false);
mySwitch.tintColor = UIColor(red: (69/255.0), green: (209/255.0), blue: (153/255.0), alpha: 1.0)
mySwitch.addTarget(self, action: #selector(handleAnonSwitch), forControlEvents: .ValueChanged)
return mySwitch
}()
을 지금은 mySwitch.addTarget
에 self
키워드에 다음과 같은 오류 메시지가 받고 있어요 :
Cannot convert value of type 'NSObject ->() -> PostFeed' to expected argument type 'AnyObject?'
내가 내 모든 기타에 self
를 사용 addTarget
은 UIButton
에서 작동하며이 오류가 발생하지 않습니다.