Digital PCT265 story MVAPCT-213 - Function name update
This commit is contained in:
parent
1d2defeabb
commit
dfbb53f545
@ -34,7 +34,7 @@
|
||||
- (void)hideArrow;
|
||||
|
||||
/// Orientation supported by the panel.
|
||||
- (UIInterfaceOrientationMask)supportedInterfac;
|
||||
- (UIInterfaceOrientationMask)supportedInterface;
|
||||
|
||||
/// The width to use if the panel is automatically extended when the screen is big enough.
|
||||
- (CGFloat)panelExtendedWidth;
|
||||
|
||||
@ -680,7 +680,7 @@ CGFloat const PanelAnimationDuration = 0.2;
|
||||
}
|
||||
}
|
||||
if (@available(iOS 16.0, *)) {
|
||||
if ([panel respondsToSelector:@selector(supportedInterfac)]) {
|
||||
if ([panel respondsToSelector:@selector(supportedInterface)]) {
|
||||
[controller setNeedsUpdateOfSupportedInterfaceOrientations];
|
||||
}
|
||||
}
|
||||
@ -715,7 +715,7 @@ CGFloat const PanelAnimationDuration = 0.2;
|
||||
}
|
||||
}
|
||||
if (@available(iOS 16.0, *)) {
|
||||
if ([panel respondsToSelector:@selector(supportedInterfac)]) {
|
||||
if ([panel respondsToSelector:@selector(supportedInterface)]) {
|
||||
[controller setNeedsUpdateOfSupportedInterfaceOrientations];
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user