BaseViewController.h 533 B

12345678910111213141516171819202122232425
  1. //
  2. // BaseViewController.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/29.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BaseViewController : UIViewController
  10. @property (nonatomic, strong) IBOutlet UILabel* titleLabel;
  11. @property (nonatomic, strong) IBOutlet UIButton* backView;
  12. @property (nonatomic, strong) IBInspectable NSString* topTitle;
  13. @property (nonatomic, readonly) BOOL prefersUnifiedBackground;
  14. @property (nonatomic, readonly) BOOL prefersAutomaticBackView;
  15. @end