4

我对watchOS 3and有一个有趣的问题watchOS 2。在我的ComplicationController我想同时支持watchOS 3watchOS 2.创建并发症模板时,我正在检查用户是否正在运行watchOS 3。如果他是,我将允许使用.ExtraLarge并发症,否则此选项不可用。

我正在使用该语法,但由于缺少框架#available,该应用程序甚至无法启动。watchOS 2这是我的代码:

if #available(watchOSApplicationExtension 3.0, *) {
   if complicationFamily == .ExtraLarge {
      let extraLarge = CLKComplicationTemplateExtraLargeSimpleText()
      extraLarge.textProvider = simpleTextProvider

      return extraLarge
   } else {
      return nil
   }
} else {
   return nil
}

当我运行watchOS 2这是我得到的错误:

dyld: Symbol not found: _OBJC_CLASS_$_CLKComplicationTemplateExtraLargeSimpleText
  Referenced from: /Users/asdf/Library/Developer/CoreSimulator/Devices/48D00565-3BA5-4851-B249-5818BA060716/data/Containers/Bundle/Application/1ACF1C41-9D9E-4AB6-9D49-767A067AE968/WatchKit App.app/PlugIns/WatchKit Extension.appex/WatchKit Extension
  Expected in: /Library/Developer/CoreSimulator/Profiles/Runtimes/watchOS 2.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ClockKit.framework/ClockKit

有没有其他人在部署到watchOS 3和时遇到问题watchOS 2

4

1 回答 1

1

我在 Apple Developer Forums 上的帖子的帮助下弄清楚了这一点。我需要将 添加ClockKit.framework到链接的二进制文件并将其状态设置为Optional. 现在一切都按预期工作watchOS 2

这是帖子: https ://forums.developer.apple.com/thread/61712

于 2016-10-06T14:10:05.347 回答