我正在使用RubyMotion和ProMotion gem开发iOS应用。
如何使用ProMotion创建自定义表格单元?如果我使用内置
在表格屏幕中,我只能使用默认的iOS样式,这不是很有帮助。

我添加了此功能,该功能在不使用ProMotion时有效。
但是,当我在ProMotion屏幕上使用此功能时,它不会触发:

def tableView(tableView, cellForRowAtIndexPath:indexPath)

 ...

end

最佳答案

促销具有创建表单元格的机制。

你读过这个吗? https://github.com/clearsightstudio/ProMotion/wiki/API-Reference:-ProMotion::TableScreen#table_data

您应该能够执行所需的操作:-)

编辑:

这是一个自定义UITableView颜色以及UITableViewCells的示例。

https://gist.github.com/Arkan/5662905

关于rubymotion - 对ProMotion表格单元进行自定义样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16609027/

10-11 10:50