mirror of
https://github.com/yattee/yattee.git
synced 2024-12-14 06:10: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)
|
||
|
}
|
||
|
}
|