มีหลายวิธีในการทำเช่นนั้นและฉันคิดว่าแต่ละคนสามารถเหมาะสำหรับโครงการหนึ่ง แต่ไม่ใช่โครงการอื่นดังนั้นฉันคิดว่าฉันจะเก็บไว้ที่นี่บางทีคนอื่นจะทำงานในกรณีอื่น
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- จากกระดานเรื่องราว
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)
}
}
การใช้งาน: ภายใน
ของคุณเพิ่มบรรทัดนี้: AppDelegate
application(_ application: didFinishLaunchingWithOptions)
UIViewController.swizzlePresent()
การใช้วิธีนี้คุณไม่จำเป็นต้องทำการเปลี่ยนแปลงใด ๆ กับการเรียกปัจจุบันเนื่องจากเรากำลังแทนที่การใช้วิธีการปัจจุบันในรันไทม์
หากคุณจำเป็นต้องรู้ว่าอะไรคือ swizzling คุณสามารถตรวจสอบลิงค์นี้:
https://nshipster.com/swift-objc-runtime/
fullScreen
ตัวเลือกที่ควรจะเริ่มต้นที่จะป้องกันการเปลี่ยนแปลง UI ทำลาย