前言
问题
textInput相关
设置键盘隐藏与换行(ios)
- 要在textInput标签 使用 keyboardType(指定键盘类型),returnKeyType(指定完成按钮类型)
- returnKeyType使用"done"
- 遇到需要使用文本域类型(多行输入),multiline={true}时,需设置onSubmitEditing={Keyboard.dismiss},不然完成按钮没有效果。
软键盘遮住文本框
当我们的文本框框在页面下半部,点击文本框,呼出软键盘,软键盘通常会遮盖文本框(Ios),遇到这种情况:
1.使用react-native-keyboard-aware-scroll-view,安装方法自行百度
2.将KeyboardAwareScrollView标签放在header标签下,footer标签上 ,将整个 scrollView 套住。
如下:
<ViewProt>
<StatusBar></StatusBar>
<KeyboardAwareScrollView>
<ScrollView>
<textInput> textInput在ScrollView中
</ScrollView>
</KeyboardAwareScrollView>
<Footer></Footer>
</ViewPort>
react-native init project问题
CocoaPods相关依赖安装卡住
!!!注意!!!:init 命令默认会创建最新的版本,而目前最新的 0.45 及以上版本需要下载 boost 等几个第三方库编译。这些库在国内即便翻墙也很难下载成功,导致很多人无法运行iOS项目!!!中文网在论坛中提供了这些库的国内下载链接。如果你嫌麻烦,又没有对新版本的需求,那么可以暂时创建0.44.3的版本。
react-native init MyApp --version 0.44.3
Could not find iPhone 6 simulator
找到项目中node_modules/react-native/local-cli/runIOS/findMatchingSimulator.js
if (version.indexOf('iOS') !== 0 )
替换成
if (!version.includes("iOS" ))
if (simulator.availability !== '(available)')
替换成
if (simulator.isAvailable !== true)
总结
未完待续...
长期追更...
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。