Posts

Post not yet marked as solved
5 Replies
4.8k Views
I have various apps that use the front or back camera and intermittently the capture manager/AV session freezes. This doesn't appear to be a media services reset issue. Even if I detect the interruption and try to restart the session it won't start. I have to go to background-foregound-background-foreground and then try starting the AV session again and then it might work. I've also noticed this in other apps like my Bank of America app when scanning in a check for deposit. I've reached out to Apple filing a bug report but they say they can't reproduce the issue. This has been happening on all versions of iOS 13 up to iOS 13.1.2 on all devices from iPhone 8/X/XS/XS Max/11/11 Pro & 11 Pro Max.Jun 5, 2019 at 6:49 PM – FB6123417iOS 13 AVCamCaptureManager and AVCaptureVideoPreviewLayer now stalls for no reason or error.
Posted
by OPRoss.
Last updated
.
Post not yet marked as solved
3 Replies
1.3k Views
In iOS Settings -> (app name) I have multiple settings defined (from Settings.bundle -> Root.plist). The slider setting I have defined (PSSliderSpecifier) is now producing incorrect values in iOS 13 Beta 2 when in prior iOS versions it worked correctly. When I access the current setting/slider value from the app (CGFloat qrCodeSize = [[NSUserDefaults standardUserDefaults] floatForKey:@"qrCodeSize"];) I get a value that is less than 0 (ex: 0.00012345) instead of a value between my defined bounds of min (350) and max (400) defined values. Again, this only happens in iOS 13 and not iOS 12.... <dict> <key>Type</key> <string>PSSliderSpecifier</string> <key>Key</key> <string>qrCodeSize</string> <key>DefaultValue</key> <real>400</real> <key>MinimumValue</key> <integer>350</integer> <key>MaximumValue</key> <integer>400</integer> <key>MinimumValueImage</key> <string>qrCodeSizeMin.png</string> <key>MaximumValueImage</key> <string>qrCodeSizeMax.png</string> </dict>...Submitted in Feedback: FB6205390
Posted
by OPRoss.
Last updated
.
Post not yet marked as solved
0 Replies
815 Views
I have black volume icons for the slider in my app's settings. Now that iOS 13 supports dark mode, I can't really see those icons because they are black. How do I specify white versions of those icons? Are there 2 additional keys that specify that -OR- do I need to name the white versions of those icons something specific for the system to automatically use them?<dict> <key>Type</key> <string>PSSliderSpecifier</string> <key>Key</key> <string>auto_audiolevel_minvalue</string> <key>DefaultValue</key> <real>50</real> <key>MinimumValue</key> <integer>50</integer> <key>MaximumValue</key> <integer>100</integer> <key>MinimumValueImage</key> <string>volumeAutoAdjustMin.png</string> <key>MaximumValueImage</key> <string>volumeAutoAdjustMax.png</string> </dict>
Posted
by OPRoss.
Last updated
.
Post not yet marked as solved
3 Replies
3.5k Views
modalPresentationStyle = UIModalPresentationFullScreen works on most other view controllers in iOS 13 but not MFMessageComposeViewController instance. As such, VC instance is presented in iOS 13 card style default [which I do not want].MFMessageComposeViewController *messageController = [[MFMessageComposeViewController alloc] init];messageController.messageComposeDelegate = self;...messageController.modalPresentationStyle = UIModalPresentationFullScreen;[self presentViewController:messageController animated:YES completion:NULL];Submitted Feedback Report: FB6142755
Posted
by OPRoss.
Last updated
.
Post marked as solved
2 Replies
2.6k Views
When Dark Mode is enabled at the OS level it is obviously having affects on the colors in my controls. How do I prevent this default behaving without having to explicitly set colors on all my controls? Is there a simple way in AppDelegate..application:didFinishLaunchingWithOptions: to prevent this now default behavior in iOS 13?
Posted
by OPRoss.
Last updated
.
Post not yet marked as solved
3 Replies
4.6k Views
iOS 13 can't set modalPresentationStyle = UIModalPresentationFullScreen on MPMediaPickerController instance. If I don't set it works fine in iOS 13. When I do set it shows a blank screen. So on iOS 13 forced to see this VC in a card like view instead of full screen.Submitted Feedback Report: FB6123458
Posted
by OPRoss.
Last updated
.
Post not yet marked as solved
0 Replies
758 Views
Either the FooterText string doesn't show or if it doesn't show it just runs off the right side of the screen instead of line wrapping in iOS -> Settings -> [App]<dict> <key>Type</key> <string>PSGroupSpecifier</string> <key>Title</key> <string></string> <key>FooterText</key> <string>Requires restarting the app for the above settings to take affect.</string> </dict>Submitted Feedback Report: FB6123444
Posted
by OPRoss.
Last updated
.
Post marked as solved
5 Replies
10k Views
iOS 13 No longer hiding status bar as with previous versions (but when I deploy the same code to iOS 12 down all works as expected). This only happens on my iPhones (iPhoneXS Max & iPhone XS so far; haven't tried on my iPhone 7) and it does not happen on my iPad. Is in line with what other developer observed in his below reply.Everywhere in the app I have:- (bool) prefersStatusBarHidden { return true;}And I have the usual settings in Info.plist:<key>UIStatusBarHidden</key> <true/> <key>UISupportedInterfaceOrientations</key> <array> <string>UIInterfaceOrientationPortrait</string> </array> <key>UISupportedInterfaceOrientations~ipad</key> <array> <string>UIInterfaceOrientationPortrait</string> </array> <key>UIViewControllerBasedStatusBarAppearance</key> <false/>Submitted Feedback Report: FB6123427
Posted
by OPRoss.
Last updated
.