我正在尝试在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的选项,我看不到与行相对应的任何内容。我该怎么办?
答案 0 :(得分:1)
我没有使用RoboVM的经验。但是,indexPath.section
和indexPath.row
只是
[indexPath indexAtPosition:0] // section
[indexPath indexAtPosition:1] // row
并且在Java类中定义了indexAtPosition:
方法 。