如何在iOS Xcode app Food Tracker中修复ratingControl类?

时间:2016-04-27 22:15:00

标签: ios xcode swift xcode7

ratingControl class error

如何修复此代码行发生的错误?我已经尝试了一切。谢谢。

1 个答案:

答案 0 :(得分:0)

您的代码使用Swift 2.2语法,可从Xcode 7.3获得。

有关详细信息,请参阅Xcode 7.3发行说明https://developer.apple.com/library/ios/releasenotes/DeveloperTools/RN-Xcode/Chapters/Introduction.html

The Objective-C selector of a Swift method can be determined directly with the #selector expression, for example: let sel = #selector(insertSubview(_:aboveSubview:)) // sel has type Selector

所以你问题的答案 - 你需要将你的Xcode从7.2版更新到7.3版,错误就会消失。

如果您不想更新Xcode,请使用旧的selector语法,例如:

selector: "ratingButtonTapped"