1. ホーム
  2. swift

[解決済み] Swiftベースのアプリケーションは、OS X 10.9/iOS 7以下でも動作しますか?

2022-03-16 08:19:07

質問

Swiftベースのアプリケーションは OS X 10.9 (Mavericks)/iOS 7 以下ではありませんか?

例えば、私が使っているマシンで OS X 10.8 (Mountain Lion)で、Swiftで書いたアプリケーションが動くかどうか気になるところです。

あるいは、Mac OSを使ったSwiftアプリケーションを作るには何が必要でしょうか?

どのように解決するのですか?

Swiftのアプリケーションは標準的なバイナリにコンパイルされ、OS X 10.9とiOS 7で実行することができます。


テストに使用したシンプルなSwiftアプリケーションです。

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
    self.window = UIWindow(frame: UIScreen.mainScreen().bounds)

    var controller = UIViewController()
    var view = UIView(frame: CGRectMake(0, 0, 320, 568))
    view.backgroundColor = UIColor.redColor()
    controller.view = view

    var label = UILabel(frame: CGRectMake(0, 0, 200, 21))
    label.center = CGPointMake(160, 284)
    label.textAlignment = NSTextAlignment.Center
    label.text = "I'am a test label"
    controller.view.addSubview(label)

    self.window!.rootViewController = controller
    self.window!.makeKeyAndVisible()
    return true
}