错误:无法读取null的属性“UIAppFonts”

时间:2017-01-23 03:08:54

标签: reactjs react-native

运行react-native link时会出现此错误,

the error

它说,

rnpm-install ERR! It seems something went wrong while linking. Error: Cannot read property 'UIAppFonts' of null

3 个答案:

答案 0 :(得分:3)

我有同样的问题。我在ios目录中被Info.plist文件意外删除了。恢复它,解决了我的问题。

答案 1 :(得分:1)

万一遇到任何人,这就是我解决带有UIAppFonts的react-native链接问题的方法:

# Regenerates ios files
react-native upgrade

# Works now
react-native link

基本上,它与马特在上面发布的答案非常相似,只是我不知道如何还原它。

答案 2 :(得分:1)

我有同样的问题不久,运行user:~/tmp$ git log commit 6077908acc97810b27f2ac53cdeed4df1c5dd6cf (HEAD -> master) Merge: 5a22c43 63ef35e Merge branch 'feature1' into feature * feature: bar foo 会给您错误。 如果您使用的是yarn,只需运行:

  1. react-native links
  2. yarn remove react-native
  3. 然后运行yarn add react-native

这为我修复了它。