Swift框架-章:1、开发一个Swift框架

Swift已成为一种流行的编程语言,并且每天都在发展。
开发Swift框架具有以下优点。
隐藏您的代码实现。
由于.framework文件已经编译,因此将减少重新编译并节省开发时间。
这就是苹果公司使用的,例如:UIKit.framework。
那么,您在寻找什么?让我们现在开始开发自己的Swift框架。

开发Swift框架具有以下优点。

1、隐藏您的代码实现。
2、由于.framework文件已经编译,因此将减少重新编译并节省开发时间。

这就是苹果公司使用的,例如:UIKit.framework。
那么,您在寻找什么?让我们现在开始开发自己的Swift框架。
使用的工具:XCode 11.6 +,Swift 5.1+
步骤1:-安装框架项目

1、创建新的XCode项目。
图1
2、 创建框架
图2
为您的项目命名,我们使用了类似于Alamofire的AlamoWater名字。 (请确保选择语言-Swift)
图3
单击目标内的AlamoWater文件夹,然后按⌘+N。
选择文件名AlamoWater和以下子类:NSObject
图4

AlameWater.swift中添加以下代码

注意:-确保您的类和方法设置为Public

import UIKit

public protocol AlamoWaterProtocol {
    func didCallHello()
}

open class AlamoWater: NSObject {
    public static let shared = AlamoWater()
    
    public var delegate:AlamoWaterProtocol?
    
    open func hello(){
        debugPrint("Hello from AlamoWater!")
        AlamoWater.shared.delegate?.didCallHello()
    }
}

要为iOS设备和模拟器创建框架,请向您的项目添加新的Aggregate目标。
图5
图6

图7
图8

并添加[运行脚本]

图10
#!/bin/sh

UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal

# make sure the output directory exists
mkdir -p "${UNIVERSAL_OUTPUTFOLDER}"

# Step 1. Build Device and Simulator versions
xcodebuild -target "AlamoWater" ONLY_ACTIVE_ARCH=NO -configuration ${CONFIGURATION} -sdk iphoneos  BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build
xcodebuild -target "AlamoWater" -configuration ${CONFIGURATION} -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build

# Step 2. Copy the framework structure (from iphoneos build) to the universal folder
cp -R "${BUILD_DIR}/${CONFIGURATION}-iphoneos/AlamoWater.framework" "${UNIVERSAL_OUTPUTFOLDER}/"

# Step 3. Copy Swift modules from iphonesimulator build (if it exists) to the copied framework directory
SIMULATOR_SWIFT_MODULES_DIR="${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/AlamoWater.framework/Modules/AlamoWater.swiftmodule/."
if [ -d "${SIMULATOR_SWIFT_MODULES_DIR}" ]; then
cp -R "${SIMULATOR_SWIFT_MODULES_DIR}" "${UNIVERSAL_OUTPUTFOLDER}/AlamoWater.framework/Modules/AlamoWater.swiftmodule"
fi

# Step 4. Create universal binary file using lipo and place the combined executable in the copied framework directory
lipo -create -output "${UNIVERSAL_OUTPUTFOLDER}/AlamoWater.framework/AlamoWater" "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/AlamoWater.framework/AlamoWater" "${BUILD_DIR}/${CONFIGURATION}-iphoneos/AlamoWater.framework/AlamoWater"

# Step 5. Convenience step to copy the framework to the project's directory
cp -R "${UNIVERSAL_OUTPUTFOLDER}/AlamoWater.framework" "${PROJECT_DIR}"

# Step 6. Convenience step to open the project's directory in Finder
open "${PROJECT_DIR}"

注意:AlamoWater改为自己项目的名字

通过按⌘+ B选择UniversalAlamoWater目标来构建您的第一个框架
构建完成后,您将看到Finder与其中的Framework一起打开。

注意:-如果出现以下错误,

… Reason: image not found

确保在嵌入式二进制文件和链接的框架和库中都添加了框架

图11
图12

你可能感兴趣的:(Swift框架-章:1、开发一个Swift框架)