Post

Replies

Boosts

Views

Activity

The line separator is missing in the Alert controller. I am encountering this issue only in the iPhone 12 series devices, in the other versions it works fine.
The line separator is missing in the alert controller. I am encountering this issue only in the iPhone 12 series devices, in the other versions it works fine. The line separator should appear as its appearing in iPhone 11 max pro, iPhone 8 Plus, iPhone 7 Plus, iPhone 6 Plus
0
0
435
Oct ’21
iOS UIAlertController Line separator missing in iPhone 12 Device, iOS 15 but Issue not reproducing in iPhone 12 Device, iOS 15 Simulator
The line separator is missing in the alert controller. I am encountering this issue only in the iPhone 12 series devices running iOS 15, in the other versions it works fine. Please share your inputs. Screen capture from iPhone 12 Device IOS 15 (Line separator is absent) But available in iPhone 12 IOS 15 Simulator UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"My title"       message:@"My subtitle"       preferredStyle:UIAlertControllerStyleAlert];              UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault       handler:^(UIAlertAction * action) {}];              [alert addAction:defaultAction];       [m_window.rootViewController presentViewController:alert animated:YES completion:nil];
0
0
393
Aug ’21