Swift : 如何将另一个框架包含到您的框架中
Swift : How to include another framework into your framework
所以我正在学习如何为 swift
创建 framework
。我自己成功地做了一个简单的框架,我称之为PunreachSpeaking
。
现在我想将 Alamorefire、Swifty 等其他框架导入 PunreachSpeaking。
但是,我不太确定如何。我尝试使用 pod install 但它没有用。请帮助
简单代码
//
// Manager.swift
// PunreachSpeaking
//
// Created by elite on 2021/04/14.
//
import Foundation
import UIKit
//import Alamofire
public class Manager {
public init(){}
public func punreachQouting() {
print("Never miss an opportunity to awesome")
}
public func getPunreachQouting() -> String {
return "Never miss an opportunity to awesome"
}
}
好吧,这很容易,你需要在 podfile 中放入你想要的库,然后 运行 pod install。如果您的 SDK 在 pod 安装后不会 运行 库,请验证此库是否嵌入到您的项目 > 常规 > 框架和库中。
所以我正在学习如何为 swift
创建 framework
。我自己成功地做了一个简单的框架,我称之为PunreachSpeaking
。
现在我想将 Alamorefire、Swifty 等其他框架导入 PunreachSpeaking。
但是,我不太确定如何。我尝试使用 pod install 但它没有用。请帮助
简单代码
//
// Manager.swift
// PunreachSpeaking
//
// Created by elite on 2021/04/14.
//
import Foundation
import UIKit
//import Alamofire
public class Manager {
public init(){}
public func punreachQouting() {
print("Never miss an opportunity to awesome")
}
public func getPunreachQouting() -> String {
return "Never miss an opportunity to awesome"
}
}
好吧,这很容易,你需要在 podfile 中放入你想要的库,然后 运行 pod install。如果您的 SDK 在 pod 安装后不会 运行 库,请验证此库是否嵌入到您的项目 > 常规 > 框架和库中。