从RoboVM中的indexPath获取行

时间:2014-05-10 04:34:10

标签: objective-c nsindexpath robovm

我正在尝试在robovm中编写以下Objective-c代码:

   (NSIndexPath *)indexPath = ...;
   cell.textLabel.text = [tableData objectAtIndex:indexPath.row];

然而,当我在这里通过RoboVM的NSIndexPath调用时看到:
https://github.com/robovm/robovm/blob/e60579613140f4a6d48f108042633fbf17b9c289/cocoatouch/src/main/java/org/robovm/apple/foundation/NSIndexPath.java

或通过滚动Eclipse的选项,我看不到与行相对应的任何内容。我该怎么办?

1 个答案:

答案 0 :(得分:1)

我没有使用RoboVM的经验。但是,indexPath.sectionindexPath.row只是

的便捷方法/属性
[indexPath indexAtPosition:0] // section
[indexPath indexAtPosition:1] // row

并且在Java类中定义了indexAtPosition:方法