iOS组件化
iOS组件化
sailip
Life is tough, and steps are determined.
职业:iOS开发工程师
Email: liuyongjiesail@icloud.com
个人网站: www.sailip.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
iOS组件化:Unable to find a specification for `xxx` depended upon by `xxx`
问题 发布验证的时候出现如下错误:找不到某个依赖库 解决 pod spec lint --sources='https://github.com/CocoaPods/Specs.git,http://gitlab.appshahe.com/component/metaapp-ios-specs.git' --use-libraries --allow-warnings 由于发布的库依赖了私有Cocopods库 metaapp-ios-specs ,导致无法找到。 验证和发布的时候需使用 --source=原创 2021-02-22 17:08:38 · 4731 阅读 · 0 评论 -
iOS组件化:podspec文件配置指南
# # Be sure to run `pod lib lint MXStatService.podspec' to ensure this is a # valid spec before submitting. # # Any lines starting with a # are optional, but their use is encouraged # To learn more a...原创 2020-02-26 11:41:29 · 2287 阅读 · 0 评论 -
iOS组件化:坑点
1. 当组件继承于第三方库时需修改导入方式 错误引入: #import "AFHTTPSessionManager.h" 正确引入: #import <AFNetworking/AFHTTPSessionManager.h> 执行如下命令时会提示 ”xxx.h“ file not found pod lib lint xx.podspec 2. 执行 pod spec lint...原创 2020-02-26 11:21:28 · 1579 阅读 · 0 评论
分享