0

我正在尝试在 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 的选项,我看不到任何与行相对应的内容。我能做些什么?

4

1 回答 1

1

我没有使用 RoboVM 的经验。但是,indexPath.section并且indexPath.row只是方便的方法/属性

[indexPath indexAtPosition:0] // section
[indexPath indexAtPosition:1] // row

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

于 2014-05-10T05:00:18.903 回答