mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
321c265a11
WIP on controls Chapters working Add previews variable Add lists ids WIP
14 lines
440 B
Swift
14 lines
440 B
Swift
import UIKit
|
|
|
|
extension UIViewController {
|
|
@objc var swizzle_prefersHomeIndicatorAutoHidden: Bool {
|
|
true
|
|
}
|
|
|
|
public class func swizzleHomeIndicatorProperty() {
|
|
swizzle(origSelector: #selector(getter: UIViewController.prefersHomeIndicatorAutoHidden),
|
|
withSelector: #selector(getter: UIViewController.swizzle_prefersHomeIndicatorAutoHidden),
|
|
forClass: UIViewController.self)
|
|
}
|
|
}
|