Można to zrobić na wiele sposobów i myślę, że każdy może pasować do jednego projektu, ale nie do innego, więc pomyślałem, że zatrzymam je tutaj, może ktoś inny wybiegnie w inną sprawę.
1- Zastąp obecny
Jeśli masz BaseViewController
, możesz zastąpić present(_ viewControllerToPresent: animated flag: completion:)
metodę.
class BaseViewController: UIViewController {
// ....
override func present(_ viewControllerToPresent: UIViewController,
animated flag: Bool,
completion: (() -> Void)? = nil) {
viewControllerToPresent.modalPresentationStyle = .fullScreen
super.present(viewControllerToPresent, animated: flag, completion: completion)
}
// ....
}
W ten sposób nie musisz wprowadzać żadnych zmian w żadnym present
wywołaniu, ponieważ po prostu przesłoniliśmy present
metodę.
2- Rozszerzenie:
extension UIViewController {
func presentInFullScreen(_ viewController: UIViewController,
animated: Bool,
completion: (() -> Void)? = nil) {
viewController.modalPresentationStyle = .fullScreen
present(viewController, animated: animated, completion: completion)
}
}
Stosowanie:
presentInFullScreen(viewController, animated: true)
3- Dla jednego UIViewController
let viewController = UIViewController()
viewController.modalPresentationStyle = .fullScreen
present(viewController, animated: true, completion: nil)
4- Z Storyboard
Wybierz segue i ustaw prezentację na FullScreen
.
5- Swizzling
extension UIViewController {
static func swizzlePresent() {
let orginalSelector = #selector(present(_: animated: completion:))
let swizzledSelector = #selector(swizzledPresent)
guard let orginalMethod = class_getInstanceMethod(self, orginalSelector), let swizzledMethod = class_getInstanceMethod(self, swizzledSelector) else{return}
let didAddMethod = class_addMethod(self,
orginalSelector,
method_getImplementation(swizzledMethod),
method_getTypeEncoding(swizzledMethod))
if didAddMethod {
class_replaceMethod(self,
swizzledSelector,
method_getImplementation(orginalMethod),
method_getTypeEncoding(orginalMethod))
} else {
method_exchangeImplementations(orginalMethod, swizzledMethod)
}
}
@objc
private func swizzledPresent(_ viewControllerToPresent: UIViewController,
animated flag: Bool,
completion: (() -> Void)? = nil) {
if #available(iOS 13.0, *) {
if viewControllerToPresent.modalPresentationStyle == .automatic {
viewControllerToPresent.modalPresentationStyle = .fullScreen
}
}
swizzledPresent(viewControllerToPresent, animated: flag, completion: completion)
}
}
Zastosowanie:
W swoim AppDelegate
wnętrzu application(_ application: didFinishLaunchingWithOptions)
dodaj ten wiersz:
UIViewController.swizzlePresent()
W ten sposób nie musisz wprowadzać żadnych zmian w żadnym bieżącym wywołaniu, ponieważ zastępujemy obecną implementację metody w środowisku wykonawczym.
Jeśli chcesz wiedzieć, co jest zawrotne, możesz sprawdzić ten link:
https://nshipster.com/swift-objc-runtime/
fullScreen
Opcja powinna być domyślnie zapobiec zerwaniu zmiany UI.