将列添加到Rubymotion Tableview

时间:2013-01-04 09:44:02

标签: ios uitableview rubymotion ipad

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

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

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

如何在RubyMotion中使用此方法?

由于

1 个答案:

答案 0 :(得分: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