React Native各种坑

ios

调试

  • navigitor隐藏返回按钮,一般用在登录后的页面
1
2
3
4
5
6
this.props.navigator.push({
title: '站点',
component: Sites,
passProps: { userId: userId },
leftButtonTitle: ' ',
})

android

调试

  • 虚拟机不要用android自带的
    用这个:https://www.genymotion.com,官方的虚拟机很慢,这个简直就是life saver。
  • 找不到RCTRootView.h
    一般是没有执行npm install,如果还不能解决,试试先清缓存
1
rm -rf node_modules
1
npm cache clear && npm install

Others