Posts

Post not yet marked as solved
9 Replies
Hi, which Xcode are you running tvOS 17 beta 1 with? It will work with Xcode 15 Beta, and not the previous released Xcodes.
Post marked as solved
3 Replies
Hello, thank you for your question. Could you click the "An internal error occurred... Report a bug" bar at the top of the canvas, and file a bug report with attached diagnostics files in Feedback Assistant?
Post not yet marked as solved
8 Replies
Hi, while I do not see the image that you posted, I was able to look at your project. When previewing the storyboard on iPhone 11, I see an "Upper Controls View" sitting right at the top of the safe area and below the status bar. The safe area represents the un-occluded area for that scene. Did you want that view to also go flush against the top screen edge? If so, you should switch the top constraint "wbK-lu-7zp" to be between "Upper Controls View".top and its superview.top, with a constant of 0. Does that help achieve the layout that you want?
Post not yet marked as solved
2 Replies
Hi, when you are encountering the error with a view controller not updating, is there an "Internal Error, report a bug" message bar at the top of the canvas? If so, could you click on it and file a bug feedbackassistant.apple.com to help us diagnose the issue? Thank you!
Post not yet marked as solved
1 Replies
The multiple nibs are used for backwards deployment compatibility. When using certain iOS features in IB, the storyboard/XIB may need to compile separate versions for the different iOS releases. In this case, we have a nib for iOS 13.0 and one for previous OSes. As just one example (but not the only one), using a segue with kind: "Present Modally" and presentation: "Automatic" could trigger backwards deployment compatible nibs during compilation.
Post not yet marked as solved
2 Replies
The error is reporting that the class does not exist because AVKit.framework is not loaded. You can either explicitly included as described in another post: Add AVKit.framework to Targets -> App -> General -> Frameworks, Libraries, and Embedded Content Or you ensure Build Settings->Apple Clang - Language - Models -> Links Frameworks Automatically == YES and add a direct code reference to a symbol in AVKit to trigger the loading along along with the AVKit import.