远程图像作为TabBarIOS中的标签栏图标?

时间:2016-05-02 15:17:01

标签: ios react-native uitabbar

我想加载用户的个人资料图片,并将其用作我的React Native应用程序中个人资料标签的标签栏图标。如何使用TabBarIOS组件完成此操作?

1 个答案:

答案 0 :(得分:0)

您可以将icon道具<TabBarIOS.item>指向您要用作图标的图片。例如,

<TabBarIOS>
  <TabBarIOS.item icon={pathToProfilePicture}>
    // component to render here
  </TabBarIOS.item>
</TabBarIOS>