XCode12制作Swift和OC混编静态库

在本篇文章中主要来记录使用Xcode12来制作静态库的过程,及出现的问题。静态库分为两种.framework文件和.a文件,在本文中,我们以.framework为例。

制作静态库

1,新建framework工程,Language一栏我们选择Objective-C

framework.png

2,在工程中分别新建一个OC类和Swift

OC类: LYPerson:

@interface LYPerson : NSObject

+ (void) run;
@end
#import "LYPerson.h"

@implementation LYPerson

+(void)run {
    NSLog(@"正在跑步......");
}
@end

Swift类:Calculator

import Foundation

public class Calculator {
    
    public static func add(_ sum1: Int, _ sum2: Int) -> Int {
        return sum1 + sum2;
    }
}
  • swift class需要指定类为 public class,其方法也应为public,才可以被外界引用。

  • OC class 需要将暴露给外界使用的类设置为public

    OC类设置为public.jpg

  • 暴露的OC类倒入库的头文件LYKitDemo

//! Project version number for LYKitDemo.
FOUNDATION_EXPORT double LYKitDemoVersionNumber;

//! Project version string for LYKitDemo.
FOUNDATION_EXPORT const unsigned char LYKitDemoVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <LYKitDemo/PublicHeader.h>

#import "LYPerson.h"

整体目录结构如下


整体结构.jpg

3,将项目的Build Configuration设置为 Release

BuildConfiguration.jpg

4,编译 simulator静态库
选择任意一个模拟器,按下 command + B进行编译,编译成功后,在 Finder 中查看 LYKitDemo.framework

模拟器.jpg

5,查看 framework支持的架构
lipo -info /Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphonesimulator/LYKitDemo.framework/LYKitDemo
结果如下

Architectures in the fat file: /Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphonesimulator/LYKitDemo.framework/LYKitDemo are: i386 x86_64 arm64
  • Xcode12,通过模拟器编译出来的静态库支持i386,x86_64,arm64架构。

6,编译真机静态库,选择Any iOS Device,按照步骤4中的步骤,在操作一边。并查看

真机静态库.jpg

同样使用lipo -info命令查看其支持的架构

 admin@localhost  ~/Desktop  lipo -info /Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphoneos/LYKitDemo.framework/LYKitDemo
Architectures in the fat file: /Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphoneos/LYKitDemo.framework/LYKitDemo are: armv7 arm64
  • 用真机编译出来的静态库,支持armv7 和 arm64架构。

7, 将 模拟器真机下的静态库进行合并
使用:lipo -create 静态库1的地址 静态库2的地址 -output 输出路径

 admin@localhost  ~/Desktop  lipo -create "/Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphoneos/LYKitDemo.framework/LYKitDemo" "/Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphonesimulator/LYKitDemo.framework/LYKitDemo" -output "/Users/admin/Desktop/IPA包/LYKitDemo"
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: /Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphoneos/LYKitDemo.framework/LYKitDemo and /Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphonesimulator/LYKitDemo.framework/LYKitDemo have the same architectures (arm64) and can't be in the same fat output file

在合并的时候发生了错误❌have the same architectures (arm64) and can't be in the same fat output file,是因为两个文件都支持arm64架构,我们需要重新编译一个不包含 arm64架构的模拟器静态库

我们修改 Build Setting 中的 Excluded Architectures选项,将其值变为arm64

模拟器下去除arm64架构.jpg

再次编译,并查看其信息:

 lipo -info /Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphonesimulator/LYKitDemo.framework/LYKitDemo
Architectures in the fat file: /Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphonesimulator/LYKitDemo.framework/LYKitDemo are: i386 x86_64

这样模拟器下的静态库只有 i386 和 x86_64架构,我们再次将模拟器和真机下的静态库进行合并:

lipo -create "/Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphoneos/LYKitDemo.framework/LYKitDemo" "/Users/admin/Library/Developer/Xcode/DerivedData/LYKitDemo-anioropnglgdfcdumxqlsqwhnusk/Build/Products/Release-iphonesimulator/LYKitDemo.framework/LYKitDemo" -output "/Users/admin/Desktop/IPA包/LYKitDemo"

这样我们能合并成功
查看新的静态库的信息

 admin@localhost  ~/Desktop  lipo -info /Users/admin/Desktop/IPA包/LYKitDemo
Architectures in the fat file: /Users/admin/Desktop/IPA包/LYKitDemo are: armv7 i386 x86_64 arm64

8,使用 Run Script 合并完整的静态库信息
8.1 在 Build Setting中新增 RunScript 选项

新增runScript选项.png

并将以下脚本信息写入

if [ "${ACTION}" = "build" ]
then
INSTALL_DIR=${SRCROOT}/Products/${PROJECT_NAME}.framework

DEVICE_DIR=${BUILD_ROOT}/${CONFIGURATION}-iphoneos/${PROJECT_NAME}.framework

SIMULATOR_DIR=${BUILD_ROOT}/${CONFIGURATION}-iphonesimulator/${PROJECT_NAME}.framework


if [ -d "${INSTALL_DIR}" ]
then
rm -rf "${INSTALL_DIR}"
fi

mkdir -p "${INSTALL_DIR}"

cp -R "${DEVICE_DIR}/" "${INSTALL_DIR}/"
#ditto "${DEVICE_DIR}/Headers" "${INSTALL_DIR}/Headers"

lipo -create "${DEVICE_DIR}/${PROJECT_NAME}" "${SIMULATOR_DIR}/${PROJECT_NAME}" -output "${INSTALL_DIR}/${PROJECT_NAME}"

#open "${DEVICE_DIR}"
open "${SRCROOT}/Products"
fi

编译工程,就会得到合并后的静态库同时支持 模拟器和真机的静态库。

脚本编译后的静态库.png

9,将x86架构下的swiftModule拷贝至 modules文件中。
modules的文件结构如下:

modules结构.jpg

常见错误

dyld: Library not loaded: @rpath/LYKitDemo.framework/LYKitDemo
Referenced from: /Users/admin/Library/Developer/CoreSimulator/Devices/39CF7B52-BCEE-4BB2-AF78-CCB581E06F91/data/Containers/Bundle/Application/CB27BBCF-D80B-44A9-A88D-7116E18C7CA9/LYCalculatorTest.app/LYCalculatorTest
Reason: image not found

需要将静态库由Do Not Embed 变为 Embed & Sign

have the same architectures (arm64) and can't be in the same fat output file

两个静态库包含了同一种架构,需要去除一个

Could not find module 'LYKitDemo' for target 'x86_64-apple-ios-simulator'; found: arm64, armv7-apple

这是因为静态库中,没有 x86swiftmodule文件。我们使用命令合并完两个静态库后,需要手动将 swiftmodule文件合并到一起。

最后附上本文相关Demo: LYKitDemo :静态库工程,LYCalculatorTest:静态库使用工程。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345