swift 评估你的App是否加入Apple Watch功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 评估你的App是否加入Apple Watch功能相关的知识,希望对你有一定的参考价值。
//
// ViewController.swift
// WatchPairedExample
//
// Created by 張 景隆 on 2015/11/26.
// Copyright © 2015年 張 景隆. All rights reserved.
//
import UIKit
import WatchConnectivity
class ViewController: UIViewController, WCSessionDelegate {
@IBOutlet weak var label: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
if WCSession.isSupported() {
let session = WCSession.defaultSession()
session.delegate = self
session.activateSession()
if session.paired {
label.text = "有配對 Apple Watch"
}
else {
label.text = "無 Apple Watch"
}
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
以上是关于swift 评估你的App是否加入Apple Watch功能的主要内容,如果未能解决你的问题,请参考以下文章
使用我的 ios App iOS 9 Swift 2.2 中的路线打开 Apple Maps App
Swift中使用JSON(译)
App Store 提交的最低 Xcode/swift 版本
转:Apple的App Analytics统计平台你必须知道的
如何下载 Swift Playgrounds iPad 应用程序?
如何正确设置 App Store 链接?