最近尝试使用swift开发新项目,当时遇到的问题,现在记录下来供参考
1、修改状态栏为白色
选择 status bar style : light
在info.plist中添加 View controller-based status bar appearance 为NO
2、swift项目中使用 pod
在Podfile文件中需要添加代码 use_frameworks!
3、添加pod失败,需设置路径
在项目targets中选择build settings ,在 search paths 中的User Header Search Paths 中添加。$(PODS_ROOT) 并选择为recursive
网友评论