iOS是否支持基于视图的表视图?

时间:2011-11-02 12:47:39

标签: ios tableview nstableviewcell

除经典的基于单元格的表外,iOS是否支持基于视图的表?看来这个新功能仅适用于Mac(OS X v 10.7)。谢谢!

1 个答案:

答案 0 :(得分:2)

我不熟悉基于视图的单元格,但从查看它看起来需要这样做,因为NSCell不会扩展NSView。但是,在iOS中,UITableViewCell确实扩展了UIView。因此,我认为基于视图的表格单元格在iOS中并不是一个新概念,因为他们的alawys就是这样。

NSCell - http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSCell_Class/Reference/NSCell.html

UITableViewCell - http://developer.apple.com/library/IOS/#documentation/UIKit/Reference/UITableViewCell_Class/Reference/Reference.html