我一直在
Swift中编写一个应用程序,因此需要编写一个子类UIViewController并符合多个协议(包括UIAlertViewDelegate,UITableViewDelegate和UITableViewDataSource)的类.我目前正在使用Xcode 6 Beta,并遇到了很多困难.
我遇到的问题源于类声明:
class TableAddition : UIViewController,UIAlertViewDelegate {
看来编译器没有识别协议,当我尝试实现以下方法时:
@optional func alertView(alertView: UIAlertView!,clickedButtonAtIndex buttonIndex: Int) { }
我收到一条错误,说“’可选’属性只能应用于协议成员”.虽然删除@optional会使错误无效,但我不认为该方法被识别为UIAlertViewDelegate协议的成员(Xcode从未为我自动完成方法实现).
解决方法
从Swift Book中的
“Protocols”开始:
Optional Protocol Requirements
You can define optional requirements for protocols,These requirements
do not have to be implemented by types that conform to the protocol.
Optional requirements are prefixed by the@optional
keyword as part of
the protocol’s deFinition.
因此@optional关键字仅用于标记的协议定义
可选要求.它不与协议方法的实现一起使用.
因此,删除代码中的@optional是正确的解决方案.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。