美文网首页iOS Developer
Swift on Linux —— 在 Linux 平台使用 F

Swift on Linux —— 在 Linux 平台使用 F

作者: PonyCui | 来源:发表于2015-12-07 13:40 被阅读1015次

前言

Foundation 框架是 Apple 的一大宝库,它是 Apple 数十年数万工程师的智慧结晶。 在 Swift 开源以后, CoreFoundation 框架也同步开源,但是,目前为止,开源的类还相当有限,一些有用的类还不支持使用。

使用方法

要在 Linux 中使用 CoreFoundation 框架,只需要在代码开头import两个框架即可。

import Foundation
import CoreFoundation

要使用其中的类,就像在普通的 Swift 应用中使用就可以。

import Foundation
import CoreFoundation

if let URL = NSURL(string: "http://www.baidu.com/") {
    print(URL.host)
}

let date = NSDate()
print(date.timeIntervalSince1970)

受限

目前为止,仅有一部分很基础的类被移植到 Linux 上,以下类是经过验证可用的。

  • NSString (Swift.String)
  • NSNumber (Swift.Int...)
  • NSArray (Swift.Array)
  • NSDictionary (Swift.Dictionary)
  • NSDate
  • NSData
  • NSURL
  • NSSet
    ...

其它部分的库, Apple 是如此答复的:


Why not make the existing Objective-C implementation of Foundation open source?

Foundation on Darwin is written primarily in Objective-C, and the Objective-C runtime is not part of the Swift open source project. CoreFoundation, however, is a portable C library and does not require the Objective-C runtime. It contains much of the behavior that is exposed via the Foundation API. Therefore, it is used on all platforms including Linux.


Foundation 在 OS X 中主要是使用 Objective-C 编写的, Objective-C 运行时并不是 Swift 开源工作的一部分。
CoreFoundation 框架,是使用 C 语言进行开发的,并不依赖 Objective-C 运行时,它的组件在 Foundation 框架中被广泛使用。 所以,它可以用在所有的平台上包括 Linux。

如果你需要使用一些未移植的库的时候,可以尝试使用 CF 开头的类,它们已经移植到 Linux 上。

结语

开源 Swift 而不开源 Foundation, 对于任何一个开发者来说,都是悲剧的,幸好 Apple 还是开源了这个库的一部分。我们期待 Apple 可以将网络库(NSURLConnection、NSURLSession库目前不可用)也同时开源出来,让 Swift 可以成为真正的跨平台语言。

目录:http://www.jianshu.com/notebooks/2633832/latest
下一篇:使用包依赖工具

相关文章

网友评论

    本文标题:Swift on Linux —— 在 Linux 平台使用 F

    本文链接:https://www.haomeiwen.com/subject/tcrehttx.html