mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 13:50:32 +05:30
14 lines
447 B
Swift
14 lines
447 B
Swift
import UIKit
|
|
|
|
extension UIViewController {
|
|
@objc var swizzle_prefersHomeIndicatorAutoHidden: Bool {
|
|
return true
|
|
}
|
|
|
|
public class func swizzleHomeIndicatorProperty() {
|
|
swizzle(origSelector: #selector(getter: UIViewController.prefersHomeIndicatorAutoHidden),
|
|
withSelector: #selector(getter: UIViewController.swizzle_prefersHomeIndicatorAutoHidden),
|
|
forClass: UIViewController.self)
|
|
}
|
|
}
|