dependencies: [
.package(url: "https://github.com/William-Weng/WWAppInstallSource.git", .upToNextMajor(from: "1.0.4"))
]
函数 | 功能 |
---|---|
detect(bundle:) | 检测App是从哪里安装的 |
import UIKit
import WWPrint
import WWAppInstallSource
final class ViewController: UIViewController {
@IBOutlet weak var myLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
myLabel.text = WWAppInstallSource.shared.detect()?.rawValue
}
}