12345678910111213141516171819202122232425 |
- #import <UIKit/UIKit.h>
- @interface BaseViewController : UIViewController
- @property (nonatomic, strong) IBOutlet UILabel* titleLabel;
- @property (nonatomic, strong) IBOutlet UIButton* backView;
- @property (nonatomic, strong) IBInspectable NSString* topTitle;
- @property (nonatomic, readonly) BOOL prefersUnifiedBackground;
- @property (nonatomic, readonly) BOOL prefersAutomaticBackView;
- @end
|