ios - 在 iOS 应用程序中使用 rct 桥来表示 react native 中的表格 View
<p><p>我正在尝试使用现有的 iOS sdk 对表格 View 使用react。即我将需要使用 RCT 桥(通过 RCT_EXPORT 函数)来执行此操作。这是我第一次使用这个桥头,谁能告诉我怎么做,下面是代码的样子:</p>
<p>viewcontroller.m</p>
<pre><code>RCT_EXPORT_METHOD(tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath:(RCTResponseSenderBlock)callback)
{
MyProduct *product = self.products;
NSLog(@"products list is gonna be sent now");
callback(@);
}
</code></pre>
<p>如何在 react js 表格 View 中显示从上述函数返回的数据?</p>
<p>**注意(下面是我要导出的函数)**</p>
<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = ;
MyProduct *product = self.products;
cell.textLabel.text = product.title;
return cell;
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>为此有一个组件。请查看:<a href="https://github.com/aksonov/react-native-tableview" rel="noreferrer noopener nofollow">aksonov/react-native-tableview</a> </p></p>
<p style="font-size: 20px;">关于ios - 在 iOS 应用程序中使用 rct 桥来表示 reactnative 中的表格 View ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32448943/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32448943/
</a>
</p>
页:
[1]