Browse Source

1.启动页相关

huangxiaodong 1 year ago
parent
commit
8bfad2e4c9

+ 4 - 4
创维盒子/双子星云手机.xcodeproj/project.pbxproj

@@ -4837,7 +4837,7 @@
 				CODE_SIGN_ENTITLEMENTS = "计算器.entitlements";
 				CODE_SIGN_IDENTITY = "Apple Development";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 10;
+				CURRENT_PROJECT_VERSION = 11;
 				DEVELOPMENT_TEAM = 6SV76WTUUR;
 				FRAMEWORK_SEARCH_PATHS = (
 					"$(inherited)",
@@ -4920,7 +4920,7 @@
 				CODE_SIGN_ENTITLEMENTS = "计算器.entitlements";
 				CODE_SIGN_IDENTITY = "Apple Development";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 10;
+				CURRENT_PROJECT_VERSION = 11;
 				DEVELOPMENT_TEAM = 6SV76WTUUR;
 				FRAMEWORK_SEARCH_PATHS = (
 					"$(inherited)",
@@ -5118,7 +5118,7 @@
 				CODE_SIGN_IDENTITY = "Apple Development";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
 				CODE_SIGN_STYLE = Manual;
-				CURRENT_PROJECT_VERSION = 30;
+				CURRENT_PROJECT_VERSION = 31;
 				DEVELOPMENT_TEAM = "";
 				"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 6SV76WTUUR;
 				FRAMEWORK_SEARCH_PATHS = (
@@ -5199,7 +5199,7 @@
 				CODE_SIGN_IDENTITY = "Apple Development";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
 				CODE_SIGN_STYLE = Manual;
-				CURRENT_PROJECT_VERSION = 30;
+				CURRENT_PROJECT_VERSION = 31;
 				DEVELOPMENT_TEAM = "";
 				"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 6SV76WTUUR;
 				FRAMEWORK_SEARCH_PATHS = (

+ 5 - 1
创维盒子/双子星云手机/AppDelegate/SceneDelegate.m

@@ -169,7 +169,11 @@
         [self.window addSubview:_customLaunchV];
     }
     
-    [self getDeviceMsgInMainVCWith:deviceDict];
+    //20240612 产品觉得 启动页太快了 要停两秒 
+    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
+        [self getDeviceMsgInMainVCWith:deviceDict];
+    });
+   
     //[self showNetErrorAlertType2Fun];
 }
 

+ 11 - 1
创维盒子/双子星云手机/AppDelegate/customLaunchView/customLaunchView.m

@@ -56,7 +56,17 @@
         make.centerX.mas_equalTo(0);
         make.centerY.mas_equalTo(0);
         make.width.mas_equalTo(375.0);
-        make.height.mas_equalTo(320.0);
+        //make.height.mas_equalTo(320.0);
+    }];
+    
+    //    guide_up_icon
+    UIImageView *upImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"guide_up_icon"]];
+    [self addSubview:upImageView];
+    [upImageView mas_makeConstraints:^(MASConstraintMaker *make) {
+        make.bottom.mas_equalTo(-60);
+        make.centerX.mas_equalTo(0);
+        make.width.mas_equalTo(132*1.3);
+        make.height.mas_equalTo(28*1.3);
     }];
 }
 @end

BIN
创维盒子/双子星云手机/Assets.xcassets/customLaunch/customLaunch_Hans_HK.imageset/customLaunch_Hans_HK@2x.png


BIN
创维盒子/双子星云手机/Assets.xcassets/customLaunch/customLaunch_en.imageset/customLaunch_en@2x.png