问题描述
我正在使用Parse.我正在尝试查询数据库中对象的列表.我正在使用快速编程语言.我认为导致此错误的原因是因为obj-c和swift bridge.谁能帮我 ?这是我的代码.
I am using Parse. I am trying to query a list of the object in the database. I am using swift programming language. I think the reason cause this error is because obj-c and swift bridge. Can anyone help me ?Here is my code.
override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
只有第一行有错误.
推荐答案
编辑!它必须是这样的:
EDIT! It has to be like this:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
出于某些代码向后兼容的原因,您可以使用以下代码:
For some code backward compatibility reasons you can use and the following:
override func tableView(tableView: UITableView?, cellForRowAtIndexPath indexPath: NSIndexPath?) -> UITableViewCell {
只需更改!"带有?"的符号.我正在使用Xcode 6 GM种子. UITableViewDataSource中有一些更改.我遇到了同样的错误,但是像我这样修改它...
Just change the "!" signs with "?". I'm using Xcode 6 GM seed. There are some changes in UITableViewDataSource. Iwas geting the same error, but changing it like this work for me ...
这篇关于使用选择器'***'的覆盖方法具有不兼容的类型'****'解析的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!