Browse Source

1.启动页去掉默认图片
2.关于页面修复bug

huangxiaodong 2 years ago
parent
commit
85ab6cd1b5

+ 4 - 4
创维盒子/双子星云手机/AppDelegate/Base.lproj/LaunchScreen.storyboard

@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="21507" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
+<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="21225" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
     <device id="retina6_1" orientation="portrait" appearance="light"/>
     <dependencies>
         <deployment identifier="iOS"/>
-        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="21505"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="21207"/>
         <capability name="Safe area layout guides" minToolsVersion="9.0"/>
         <capability name="System colors in document resources" minToolsVersion="11.0"/>
         <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
@@ -17,7 +17,7 @@
                         <rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
                         <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                         <subviews>
-                            <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="startImage" translatesAutoresizingMaskIntoConstraints="NO" id="HKe-L5-548">
+                            <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="startImage111" translatesAutoresizingMaskIntoConstraints="NO" id="HKe-L5-548">
                                 <rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
                             </imageView>
                         </subviews>
@@ -37,7 +37,7 @@
         </scene>
     </scenes>
     <resources>
-        <image name="startImage" width="375" height="667"/>
+        <image name="startImage111" width="128" height="128"/>
         <systemColor name="systemBackgroundColor">
             <color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
         </systemColor>

+ 6 - 6
创维盒子/双子星云手机/Class/Set/appUpdate/AboutViewController.m

@@ -230,16 +230,16 @@
         [self showNewVersion];
         [HWDataManager setBoolWithKey:Const_haveVersion value:NO];
         
-        _checUpdatekBtn.enabled = NO;
-        _checUpdatekBtn.backgroundColor = [UIColor hwColor:@"#959799" alpha:1.0];
-        [_gl_checkVersonBut removeFromSuperlayer];
+//        _checUpdatekBtn.enabled = NO;
+//        _checUpdatekBtn.backgroundColor = [UIColor hwColor:@"#959799" alpha:1.0];
+//        [_gl_checkVersonBut removeFromSuperlayer];
     }else if ([currentVersion compare:newVersion options:NSNumericSearch] == NSOrderedDescending) { // 本地版本号 > 服务器版本号 (异常情况)
         [self showNoNewVersion];
         [HWDataManager setBoolWithKey:Const_haveVersion value:NO];
         
-        _checUpdatekBtn.enabled = NO;
-        _checUpdatekBtn.backgroundColor = [UIColor hwColor:@"#959799" alpha:1.0];
-        [_gl_checkVersonBut removeFromSuperlayer];
+//        _checUpdatekBtn.enabled = NO;
+//        _checUpdatekBtn.backgroundColor = [UIColor hwColor:@"#959799" alpha:1.0];
+//        [_gl_checkVersonBut removeFromSuperlayer];
     }else { // 本地版本号 < 服务器版本号 (有新版本)
         self.versionModel.versionNumber = newVersion;
         [self showNewVersion];