BuWanVideo2.0.xcodeproj/project.pbxproj | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/AppDelegate.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/BaseViewController.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/LeftViewController.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/LoggingViewController.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/LookNoteController.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/Recommend/RecommendMainController.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/RegisteViewController.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/SettingController.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
BuWanVideo2.0/SubregionDetailViewController.m | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
BuWanVideo2.0.xcodeproj/project.pbxproj
@@ -3257,7 +3257,7 @@ CODE_SIGN_ENTITLEMENTS = BuWanVideo2.0/BuWanVideo2.0.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 98; CURRENT_PROJECT_VERSION = 99; DEVELOPMENT_TEAM = 98HSDT7AP4; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -3319,7 +3319,7 @@ "$(PROJECT_DIR)/BuWanVideo2.0/DKADSet_iOS_SDK_1.2.0_iphoneOS", "$(PROJECT_DIR)/BuWanVideo2.0/GDT_iOS_SDK", ); MARKETING_VERSION = 3.1.9; MARKETING_VERSION = 3.1.10; ONLY_ACTIVE_ARCH = YES; OTHER_LDFLAGS = ( "$(inherited)", @@ -3408,7 +3408,7 @@ CODE_SIGN_ENTITLEMENTS = BuWanVideo2.0/BuWanVideo2.0.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 98; CURRENT_PROJECT_VERSION = 99; DEVELOPMENT_TEAM = 98HSDT7AP4; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = ( @@ -3470,7 +3470,7 @@ "$(PROJECT_DIR)/BuWanVideo2.0/DKADSet_iOS_SDK_1.2.0_iphoneOS", "$(PROJECT_DIR)/BuWanVideo2.0/GDT_iOS_SDK", ); MARKETING_VERSION = 3.1.9; MARKETING_VERSION = 3.1.10; ONLY_ACTIVE_ARCH = NO; OTHER_LDFLAGS = ( "$(inherited)", BuWanVideo2.0/AppDelegate.m
@@ -77,9 +77,12 @@ //清空角标 [UIApplication sharedApplication].applicationIconBadgeNumber = 0; //设置状态栏的字体颜色 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault]; if (@available(iOS 13.0, *)) { [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDarkContent]; } else { [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault]; } _inited=false; TOCK; return YES; } BuWanVideo2.0/BaseViewController.m
@@ -44,7 +44,7 @@ } NSLog(@"%f == %f \n %f === %f",KScreenH,KScreenW,[[UIScreen mainScreen] currentMode].size.height,[[UIScreen mainScreen] currentMode].size.width); // 设置颜色 //statusBarView.backgroundColor = kGlobalMainColor; statusBarView.backgroundColor = [UIColor whiteColor]; //[self.navigationController.navigationBar setBackgroundColor:kGlobalMainColor]; [self.navigationController.navigationBar addSubview:statusBarView]; BuWanVideo2.0/LeftViewController.m
@@ -60,9 +60,9 @@ [super viewWillAppear:animated]; [self.navigationController setNavigationBarHidden:YES animated:animated]; self.navigationController.navigationBar.translucent = NO; //if(@available(iOS 13.0,*)){ // self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight; //} if(@available(iOS 13.0,*)){ self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight; } } - (void)viewWillDisappear:(BOOL)animated { @@ -85,10 +85,11 @@ //tabelView的配置 _LeftTableView.delegate=self; _LeftTableView.dataSource=self; _LeftTableView.backgroundColor = [UIColor whiteColor]; //隐藏Cell之间的线 _LeftTableView.separatorStyle = UITableViewCellSelectionStyleNone; _LeftTableView.scrollEnabled = NO; _LeftTableView.scrollEnabled = YES; //注册tableViewCell [_LeftTableView registerNib:[UINib nibWithNibName:@"LeftTableViewCell" bundle:nil] forCellReuseIdentifier:@"LeftTableViewCellId"]; BuWanVideo2.0/LoggingViewController.m
@@ -32,6 +32,9 @@ - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor=KGlobalLightGreyColor_245; if(@available(iOS 13.0,*)){ self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight; } //初始化登录界面 [self initScene]; } BuWanVideo2.0/LookNoteController.m
@@ -31,7 +31,7 @@ - (void)viewDidLoad { [super viewDidLoad]; self.navigationController.navigationBar.barTintColor = [UIColor blackColor]; // self.navigationController.navigationBar.barTintColor = [UIColor blackColor]; //获取本地的观看记录数据 historyListDataArray = [[NSMutableArray alloc]initWithContentsOfFile:HISTORYFILE]; @@ -59,13 +59,13 @@ { [super viewWillAppear:animated]; [self.navigationController setNavigationBarHidden:NO animated:animated]; [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; // [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; } - (void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault]; // [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault]; } /** BuWanVideo2.0/Recommend/RecommendMainController.m
@@ -61,6 +61,7 @@ - (void)setuoDataConfig { } -(void)loadDataFromFile { if (_isRequest) { return; BuWanVideo2.0/RegisteViewController.m
@@ -27,6 +27,9 @@ // Do any additional setup after loading the view from its nib. self.navigationItem.title = @"注册"; self.view.backgroundColor=[UIColor whiteColor]; if(@available(iOS 13.0,*)){ self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight; } //设置账号登录的字体样式 self.navigationController.navigationBar.titleTextAttributes =@{NSFontAttributeName:[UIFont systemFontOfSize:18],NSForegroundColorAttributeName:[UIColor blackColor]}; BuWanVideo2.0/SettingController.m
@@ -39,6 +39,9 @@ - (void)viewDidLoad { [super viewDidLoad]; if(@available(iOS 13.0,*)){ self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight; } [self loadData]; } BuWanVideo2.0/SubregionDetailViewController.m
@@ -81,7 +81,7 @@ - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; // [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; //NSString *str=[NSString stringWithFormat:@"分类的%@界面",self.titles]; [self.navigationController setNavigationBarHidden:YES animated:animated]; self.navigationController.navigationBar.translucent = YES;