在命令行OS X app(Xcode 7)中使用Alamofire - 代码封装?

时间:2016-01-13 23:10:45

标签: swift macos xcode7 alamofire

我试图弄清楚如何在命令行应用中使用Alamofire。

我无法使用框架,因此我已将Alamofire源代码添加到应用程序中(因此没有导入语句),并且我能够直接引用request()和其他方法。

是否有更简洁的方法来封装Alamofire,或者目前这是Swift 2.X的限制?

1 个答案:

答案 0 :(得分:0)

对于那些需要它的人,这里是解决方案。 如果没有xcodeproject文件,请生成

$ swift package generate-xcodeproj

您可能需要修复部署目标

xcode deployment target

现在该添加Alamofire了

import PackageDescription

let package = Package(
    name: "SuiteTest",
    dependencies: [
        .package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.0.0")),
        .package(url: "https://github.com/JohnSundell/Files", from: "4.0.0")
    ],
    targets: [
        .target(
            name: "SuiteTest",
            dependencies: ["Files", "Alamofire"]),
        .testTarget(
            name: "ASuiteTestTests",
            dependencies: ["Assure-SuiteTest"]),
    ]
)

我希望我对遇到同样问题的人有所帮助:)