当我运行以下代码时,rowControllerAtIndex
的WKInterfaceTable
方法返回nil。
[self.outletTable setNumberOfRows:numberOfCategoriesToShow withRowType:@"rowTypeLabel"];
RowControllerTypeLabel *theRow = [self.outletTable rowControllerAtIndex:rowInTable];
我检查过的内容:
RowControllerTypeLabel
界面中的相应属性之间建立了连接。 Custom Class
设置为我的自定义类RowControllerTypeLabel
。 我想念什么?
最佳答案
我忘记在“属性”检查器中设置行 Controller 的标识符rowTypeLabel
。
我希望这篇文章可以帮助其他人在比我需要的时间短的时间内找到问题。