After the most recent AppStoreConnect update, for my iOS app, on the left side, it is asking for macOS version to be submitted in addition to iOS version.
How would I take this option out?
Post
Replies
Boosts
Views
Activity
Using Apple Pencil's Double Tap Gesture within your app, which is not a drawing app, allowed? For example, trigger an action within the app?After reading Apple's Human Interface Guidelines, it still seems to be somewhat ambiguous. Thanks in advance.
This is regarding image orientation when captured with the device rotation lock on.'self.photoOutput.connection(with: AVMediaType.video)?.videoOrientation = self.stillImageOrientationI have self.stillImageOrientation listening to status bar orientationUIApplication.shared.statusBarOrientationHowever, when the user activates device rotation lock and rotates the device, captured photos get saved in the wrong orientation.I expected this might solve the issue:UIDevice.current.orientationThat also stops changing after the device rotation lock.I noticed the native camera app still registers proper orientation even after the device rotation lock. Is there a way to achieve this?
I've been using keywords separated by commas WITHOUT spaces.What is the recommended method? WITH or WITHOUT spaces? Or there is no difference?
Previously, I have had screenshots and Display P3 color space embedded, and they looked fine on device.I recently, switched to Photoshop and exported them in Display P3 and they look washed out on AppStore on device. Is there something I am missing here?What is the common practice here?
Eventhough some apps out there figured out how to do proper burst capture that is equal to stock iOS Camera App, there is no official API to do so.Currently I have it where it wil call capturePhoto over and over, which is not fast enough. I've seen some hints floating around that the proper way to do this is using bracketed capture any input on this?Thanks in advance.