123456789101112131415161718192021222324252627 |
- //
- // APPdelegateModularForQuestionData.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/7/13.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "APPdelegateModularForQuestionData.h"
- #import "RQAppEventAnnotation.h"
- RQAppEventMod(APPdelegateModularForQuestionData)
- @implementation APPdelegateModularForQuestionData
- - (NSInteger)moduleLevel {
- return 4;
- }
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- [self initMudule];
- // [self destroyModule];
- return YES;
- }
- - (void)initMudule {
- [RQ_BD_Question_Module queryQuestionWithQueryStr:@"SELECT * FROM t_question"];
- }
- @end
|