You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The update to Xcode 14 adds the new iOS 16. On iOS 16, Daily Dozen was found to have the following issues:
App Navigation Bar is in the System Status Bar area instead of below it.
App Tab Bar is in the System Home Indicator area instead of above it.
The System Status Bar and Home Indicator are each considered to be a "safe area" where the app does not normally appear.
This was not an issues for earlier Xcode/iOS build versions. It's is also now a concern as to how the existing public release will appear on the new iOS 16.
App Navigation Bar in System Status Bar Area
App Tab Bar in System Home Indicator Area
The text was updated successfully, but these errors were encountered:
The Daily Dozen app was creates a MainViewController by extending UIViewController. This is a legacy implementation (pre Daily Dozen 3.0) which has worked with no issues until the recent iOS 16 release.
The fix was to expressly add containment for the UITabController as to child/subview of the MainViewController.
The update to Xcode 14 adds the new iOS 16. On iOS 16, Daily Dozen was found to have the following issues:
The System Status Bar and Home Indicator are each considered to be a "safe area" where the app does not normally appear.
This was not an issues for earlier Xcode/iOS build versions. It's is also now a concern as to how the existing public release will appear on the new iOS 16.
App Navigation Bar in System Status Bar Area
App Tab Bar in System Home Indicator Area
The text was updated successfully, but these errors were encountered: