运行react-native link
时会出现此错误,
它说,
rnpm-install ERR! It seems something went wrong while linking. Error: Cannot read property 'UIAppFonts' of null
答案 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,只需运行:
react-native links
yarn remove react-native
yarn add react-native
这为我修复了它。