Існує кілька способів зробити це, і я думаю, кожен з них міг би підходити до одного проекту, але не до іншого, тому я подумав, що я їх збережу тут, можливо, хтось інший побіжить до іншої справи.
1- Переоцінка присутніх
Якщо у вас є, BaseViewController
ви можете змінити present(_ viewControllerToPresent: animated flag: completion:)
метод.
class BaseViewController: UIViewController {
// ....
override func present(_ viewControllerToPresent: UIViewController,
animated flag: Bool,
completion: (() -> Void)? = nil) {
viewControllerToPresent.modalPresentationStyle = .fullScreen
super.present(viewControllerToPresent, animated: flag, completion: completion)
}
// ....
}
Використовуючи цей спосіб, вам не потрібно робити жодних змін на будь-якому present
дзвінку, оскільки ми просто переоцінили present
метод.
2- Розширення:
extension UIViewController {
func presentInFullScreen(_ viewController: UIViewController,
animated: Bool,
completion: (() -> Void)? = nil) {
viewController.modalPresentationStyle = .fullScreen
present(viewController, animated: animated, completion: completion)
}
}
Використання:
presentInFullScreen(viewController, animated: true)
3- Для одного UIViewController
let viewController = UIViewController()
viewController.modalPresentationStyle = .fullScreen
present(viewController, animated: true, completion: nil)
4- З Розгортки
Виберіть segue і встановіть презентацію на FullScreen
.
5- шипіння
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)
}
}
Використання:
У вашому AppDelegate
внутрішньому application(_ application: didFinishLaunchingWithOptions)
додайте наступний рядок:
UIViewController.swizzlePresent()
Використовуючи цей спосіб, вам не потрібно робити жодних змін у будь-якому теперішньому дзвінку, оскільки ми заміняємо реалізацію цього методу під час виконання.
Якщо вам потрібно знати, що шипить, ви можете переглянути це посилання:
https://nshipster.com/swift-objc-runtime/
fullScreen
Опція повинна бути по замовчуванням для запобігання розриву змін користувальницького інтерфейсу.