原文地址:http://ios.jobbole.com/92658/
知识背景
In Xcode, with references directly from the ruby source, it:
Creates or updates a workspace.
Adds your project to the workspace if needed.
Adds the CocoaPods static library project to the workspace if needed.
Adds libPods.a to: targets => build phases => link with libraries.
Adds the CocoaPods Xcode configuration file to your app’s project.
Changes your app’s target configurations to be based on CocoaPods’s.
Adds a build phase to copy resources from any pods you installed to your app bundle. i.e. a ‘Script build phase’ after all other build phases with the following:
Shell: /bin/sh
Script: ${SRCROOT}/Pods/PodsResources.sh
大意是,CocoaPods是一个依赖管理工具,使用CocoaPods可以自动的去分析依赖,然后通过脚本去将第三方依赖复制编译为静态库然后链接进项目。~~~等。
制作Pod
有时候我们有把代码做成一个轮子给别人用情况,我们需要按照官方的教程Making CocoaPods去制作。
教程分为2类 :
发布公共Pod给所有开发者使用。
制作私有Pod。 方法较为简单。自行查阅资料即可。这里不再赘述。
Swift和Objective-C Mixed
参考官方的文档(文末指出),混编里面包含有2种调用情况:
Question1. Swift调用Objective-C
Question2. Objective-C调用Swift
这里我新建一个项目 命名为Mixed(Single View Application), 创建一个文件夹Classes用于存放源代码
创建一个Objective-C Class O 继承自NSObject 创建一个Swift Class S 继承自NSObject
Answer1: 为Swift源代码添加一个 XXX.h头文件这里为Mixed-Bridging-Header 在这个文件中导入需要访问的Objective-C 源代码的头文件。
headerConfig
有时候Xcode反应会稍微延迟一点。手动编译一下即可。做完这个配置,Swift即可访问Objective-C 源代码。
代码如图:
swiftAccessObjc
Answer2: Objective-C 访问Swift源代码 需要导入系统为项目生成的头文件,默认为Module+Swift.h 当然自己也是可以修改的, 导入之后,编译一下(Xcode有时候有缓存,没事就应该编译一下😒)
具体代码配置如图
ObjcAccessSwift
至此混编项目测试完成。
制作Pod 创建Mixed.podspec文件 键入如下内容
Pod::Spec.new do |s|
s.name = "Mixed"
s.version = "0.0.1"
s.summary = "链家网混编组件"
s.description = "链家网混编组件混编测试"
s.license = {:type => 'MIT', :file => 'LICENSE'}
s.homepage = 'http://XXXDomain/XXX.privateGit/Mixed.html'
s.author = { "男神寒" => "519224747@qq.com" }
s.source = { :git => "http://http://XXXDomain/XXX.privateGit/Mixed.git", :commit => "bb1e3eb2d55468252f68fb4c1881ecc68517757a" }
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.public_header_files = 'Mixed/Classes/*.h'
s.source_files = 'Mixed/Classes/*.{h,m,swift}'
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '2.3' }
end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17Pod::Spec.newdo|s|
s.name="Mixed"
s.version="0.0.1"
s.summary="链家网混编组件"
s.description="链家网混编组件混编测试"
s.license={:type=>'MIT',:file=>'LICENSE'}
s.homepage='http://XXXDomain/XXX.privateGit/Mixed.html'
s.author={"男神寒"=>"519224747@qq.com"}
s.source={:git=>"http://http://XXXDomain/XXX.privateGit/Mixed.git",:commit=>"bb1e3eb2d55468252f68fb4c1881ecc68517757a"}
s.platform=:ios,'8.0'
s.ios.deployment_target='8.0'
s.public_header_files='Mixed/Classes/*.h'
s.source_files='Mixed/Classes/*.{h,m,swift}'
s.requires_arc=true
s.pod_target_xcconfig={'SWIFT_VERSION'=>'2.3'}
end
接下来可使用Cocoapods提高的命令行工具 pod spec lint Mixed.podspec 去校验,但是这个方法需要完整的去编译所有项目去检测,在我的电脑需要编译很久,我一般都习惯直接安装测试。
按照如下文件夹格式存放 并提交到私有仓库
podSpecSource
接下来新建一个测试工程MixedTest 在Podfile里面输入
source 'http://http://http://XXXDomain/XXX.privateGit/privatePodPodSpec.git' #我们自己的私有spec仓库的地址
source 'https://github.com/CocoaPods/Specs.git' #官方仓库的地址
use_frameworks! #一定要加上 Swift只支持动态库的形式
platform :ios, '8.0'
inhibit_all_warnings!
target 'MixedTest' do
pod 'Mixed'
end
1
2
3
4
5
6
7
8
9
10
11source'http://http://http://XXXDomain/XXX.privateGit/privatePodPodSpec.git'#我们自己的私有spec仓库的地址
source'https://github.com/CocoaPods/Specs.git'#官方仓库的地址
use_frameworks!#一定要加上 Swift只支持动态库的形式
platform:ios,'8.0'
inhibit_all_warnings!
target'MixedTest'do
pod'Mixed'
end
然后进行pod install,完成之后编译然后不出意外的编译出错(😄😄😄😄)
compile Error
接下来进行分析错误,由于Swift只支持动态库(并非完全意义的动态库),所以我们的代码在Pod之后实际上是一个动态的Framework,在这个名为Mixed的FrameWork里面,Objectice-C源代码是存放在Mixed的命名空间,所以不需要Mixed-Bridging-Header.h也是可以的。而且也能正常的访问。所以问题出现在Objective-C调用Swift的部分。
由于Swift是有命名空间的概念的。制作之后的Mixed-Bridging-Header位于Mixed的命名空间内。由于CocoaPods对源代码做的操作只是简单的复制。并不能修改源代码。我们就需要在源头做手脚。
修改源工程的设置
newSetting
编译通过,然后更新Mixed.podspec文件然后重新提交 重新安装 这时候编译MixedTest项目,发现虽然文件找到了但是还报错。
undefineIdtntify
进入Mixed-Swift.h文件后发现除了一些系统的定义,并没有找到我们定义的Swift代码。
经查询资料得知,Swift的默认访问权限是internal,这个访问权限是无法被外部访问的,所以需要修改被Objective-C访问到的Swift源代码相关的访问权限为Public(Swift2.3)
或者open/public(Swift3.x)。 至此提交,安装,编译通过。