gpt4 book ai didi

ios - 在 iOS 应用程序中使用 rct 桥来表示 react native 中的 TableView

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:12:45 25 4
gpt4 key购买 nike

我正在尝试使用现有的 iOS SDK 对 TableView 使用react。即我将需要使用 RCT 桥(通过 RCT_EXPORT 函数)来执行此操作。这是我第一次使用这个桥接头,谁能告诉我我该怎么做,下面是代码的样子:

viewcontroller.m

RCT_EXPORT_METHOD(tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath:(RCTResponseSenderBlock)callback)
{
MyProduct *product = self.products[indexPath.row];
NSLog(@"products list is gonna be sent now");
callback(@[product.title]);

}

如何在 React js TableView 中显示从上述函数返回的数据?

**注意(下面是我要导出的函数)**

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
MyProduct *product = self.products[indexPath.row];

cell.textLabel.text = product.title;

return cell;
}

最佳答案

为此有一个组件。请查看:aksonov/react-native-tableview

关于ios - 在 iOS 应用程序中使用 rct 桥来表示 react native 中的 TableView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32448943/

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