Paul
Paul
I've tried this without crashes so far: ``` - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id)coordinator { [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator]; [[NSOperationQueue mainQueue] addOperationWithBlock:^{ __weak typeof(self) weakSelf = self; [UIView animateWithDuration:coordinator.transitionDuration animations:^{ [weakSelf setNeedsStatusBarAppearanceUpdate]; [weakSelf.alertView layoutValidateWithSize:size];...
here's my overly- cautious fix ``` - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id)coordinator { if (coordinator) { [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator]; } @try { [[NSOperationQueue mainQueue] addOperationWithBlock:^{ __weak typeof(self) weakSelf = self; [UIView animateWithDuration:coordinator.transitionDuration animations:^{...
hard coded duration should fix this - I put '0.3' where 'coordinator.transitionDuration' was
also how to increase the padding to the left of a button text or icon?
Can you use a custom class for an action sheet button?
should I be using a global? UINavigationBar.appearance().mixedBarStyle = or for each controller? self.navigationController?.navigationBar.mixedBarStyle =
i think there is a problem with mixedbarstyle
Mixedkeyboardappearance is broken too
This happens to me too, also the audio is not smooth, and frequent frame drops iPhone XS, non-jailbroken iOS 13.3 iNDS 1.10.5
how do you tell if a UIImage returned from the picker is a GIF?