27 lines
531 B
C
27 lines
531 B
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;
|
||
|
|
//交给子类来实现
|
||
|
|
-(void)setNavgationItems;
|
||
|
|
-(void)initSubViews;
|
||
|
|
- (void)getData;
|
||
|
|
/**
|
||
|
|
imageurl :图片名称或链接
|
||
|
|
*/
|
||
|
|
-(void)updateBgImage:(NSString*)imageUrl;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|