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
I've been meaning to write this issue for a few weeks but can't seem to find the exact stack overflow page(s) that lead me to this issue so I'm doing this a bit from memory.
Anyway, I've been using winit as the main event loop and window creation tool for my projects and the main issue I've had consistently is that the iOS app screen resolution is 320x480 if I take the same app and bundle it with xcodegen, it doesn't have this issue. There are a number of stack over pages mentioning similar issue:
Frankly, the Xcode release notes aren't super clear on what's being deprecated but what I've inferred is that the screen size was based on using an image per phone but now it's based on something mildly magic using the UILaunchStoryboard. If someone knows more about this I'm all ears.
Anyway, I just wanted to write this down for the next person who has this type of issue.
The text was updated successfully, but these errors were encountered:
I've been meaning to write this issue for a few weeks but can't seem to find the exact stack overflow page(s) that lead me to this issue so I'm doing this a bit from memory.
Anyway, I've been using winit as the main event loop and window creation tool for my projects and the main issue I've had consistently is that the iOS app screen resolution is 320x480 if I take the same app and bundle it with
xcodegen
, it doesn't have this issue. There are a number of stack over pages mentioning similar issue:I've tested both
cargo-bundle
and the same code usingxcodegen
testing the size of ofUIScreen::mainScreen().bounds()
with uikit-sys.Frankly, the Xcode release notes aren't super clear on what's being deprecated but what I've inferred is that the screen size was based on using an image per phone but now it's based on something mildly magic using the UILaunchStoryboard. If someone knows more about this I'm all ears.
Anyway, I just wanted to write this down for the next person who has this type of issue.
The text was updated successfully, but these errors were encountered: