gpt4 book ai didi

ios - Watchkit:在动态行中包含两个模板的表格

转载 作者:可可西里 更新时间:2023-11-01 03:07:27 25 4
gpt4 key购买 nike

如何在WKInterfaceTable中实例化两个不同的动态行模板?我只对一个模板使用函数

 [self.stocksTable setNumberOfRows: self.stocksData.count withRowType:@"TableRow"];
TableRow *row = [self.stocksTable rowControllerAtIndex:i];

问题:如何有两种类型的行?

最佳答案

你想要-[WKInterfaceTable setRowTypes:] :

[self.myTable setRowTypes:@[@"RowType1", @"RowType2"]];
MyRowType1Controller *row1 = [self.myTable rowControllerAtIndex:0];
MyRowType2Controller *row2 = [self.myTable rowControllerAtIndex:1];

关于ios - Watchkit:在动态行中包含两个模板的表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27177486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com