30 lines
667 B
Objective-C
30 lines
667 B
Objective-C
//
|
|
// QXBaseViewController.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/4/24.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXBaseViewController : UIViewController
|
|
@property (nonatomic,strong)NSMutableArray *dataArray;
|
|
@property (nonatomic,assign)NSInteger page;
|
|
@property (nonatomic,assign)BOOL bgImageHidden;
|
|
/// 是否不参与换肤
|
|
@property (nonatomic,assign)BOOL isNoChangeBgImage;
|
|
@property (nonatomic,strong)UIColor *navigationTintColor;
|
|
//交给子类来实现
|
|
-(void)setNavgationItems;
|
|
-(void)initSubViews;
|
|
- (void)getData;
|
|
/**
|
|
imageurl :图片名称或链接
|
|
*/
|
|
-(void)updateBgImage:(NSString*)imageUrl;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|