1

我正在使用 Rubymotion 创建一个基本的 iPad 应用程序。有没有办法直接向 UITableView 添加列,我在这个链接上找到了一个使用 Objective-c 的添加列

http://usxue.is-programmer.com/posts/14176.html

此代码使用 addColumn 方法在单元格中创建一个网格。

如何在 RubyMotion 中使用此方法?

谢谢

4

1 回答 1

2

就像他们一样继承 UITableViewCell :

def MyTableCell < UITableViewCell 
  def addColumn(position)
    # Add their example code here
  end
  # Etc
end

...我不会为你做这件事,但你明白了。只需将 Obj-C 转换为 RubyMotion。他们在那里给你一个非常完整的例子。

如果您的目标是 iOS 6+,则有一个名为 UICollectionView 的新对象,它也可以为您提供您想要创建的功能:

http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UICollectionView_class/Reference/Reference.html

于 2013-01-05T00:35:51.097 回答