Web app in tvOS

后端 未结 6 2056
-上瘾入骨i
-上瘾入骨i 2020-11-27 06:16

Apple has released it\'s SDK for apple tv yesterday.

Most apps for TVs are web based (html, javascript and css) and I would like to port an existing tv web app to th

6条回答
  •  孤城傲影
    2020-11-27 06:28

    UIWebView is part of the tvOS, although the documentation looks a bit limited right now (see here). You can also find the .h file here: /Applications/Xcode-beta.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h

    WebKit framework doesnt seem to be included.

    Update:

    Found in UIWebView.h: NS_CLASS_AVAILABLE_IOS(2_0) __TVOS_PROHIBITED @interface UIWebView : UIView

    Taking this into account it might be not available in tvOS :(

提交回复
热议问题