Posts

Post not yet marked as solved
0 Replies
348 Views
In my app I have the option to enable a help screen. This is a new view that simply shows a .html file. It works fine until tvOS 16.1 In tvOS 17.0 the screen is blank. Any ideas? This is how it looks in tvOS 16.1 This is tvOS 17.0 textView.backgroundColor = SKColor.white textView.isScrollEnabled = true textView.clipsToBounds = true textView.layer.cornerRadius = 20.0 textView.textColor = SKColor.black textView.isUserInteractionEnabled = true; textView.isScrollEnabled = true; textView.showsVerticalScrollIndicator = true; textView.bounces = true; textView.panGestureRecognizer.allowedTouchTypes = [NSNumber(value: UITouch.TouchType.indirect.rawValue)] if let htmlPath = Bundle.main.url(forResource: NSLocalizedString("manual", tableName: nil, comment: ""), withExtension: "html") { do { let attributedStringWithHtml:NSAttributedString = try NSAttributedString( url: htmlPath, options: [.documentType: NSAttributedString.DocumentType.html], documentAttributes: nil ) self.textView.attributedText = attributedStringWithHtml } catch { print("Error loading text") } }
Posted
by toaopeter.
Last updated
.
Post not yet marked as solved
2 Replies
1.1k Views
Good afternoon from Germany. I like to update an app to support Game Center but I think I am doing something fundamentally wrong. I created two simple Game Center achievements in App Store Connect for this app and they are marked as not hidden. I can authenticate and log in to Game Center with the app. I can also show the dashboard in Game Center. But then there is nothing to see. Achievements 0 / 0. Should't I see my 2 achievements that I created in App Store Connect? Thank you to bring some light into this darkness :-) Best, Peter
Posted
by toaopeter.
Last updated
.