Ver Fonte

关于即信

JayLuo há 5 anos atrás
pai
commit
579fde1c5e

+ 2 - 2
shiku_im.xcodeproj/project.pbxproj

@@ -11824,7 +11824,7 @@
 					"$(inherited)",
 					"$(PROJECT_DIR)/shiku_im/audioRecorder",
 				);
-				MARKETING_VERSION = 2.0.3;
+				MARKETING_VERSION = 3.0.0;
 				NGN_STACK_HOME = "";
 				ONLY_ACTIVE_ARCH = YES;
 				OTHER_LDFLAGS = "-ObjC";
@@ -11910,7 +11910,7 @@
 					"$(PROJECT_DIR)/shiku_im/3rd/UMSocial_Sdk_5.2.1/QQ",
 					"$(PROJECT_DIR)/shiku_im/3rd/QQ",
 				);
-				MARKETING_VERSION = 2.0.3;
+				MARKETING_VERSION = 3.0.0;
 				NGN_STACK_HOME = "";
 				ONLY_ACTIVE_ARCH = YES;
 				OTHER_LDFLAGS = "-ObjC";

+ 6 - 3
shiku_im/ClassesNew/classes/myVc/Vc/JXAboutJiXinVc.m

@@ -42,7 +42,10 @@
         make.centerX.mas_equalTo(0);
     }];
     UILabel *banBen=[[UILabel alloc]init];
-    banBen.text=@"版本号 4.3.1";
+    NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
+    NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"];
+    
+    banBen.text=[NSString stringWithFormat:@"版本号 %@", app_Version];
     banBen.textColor=kRGBColor(153, 153, 153);
     banBen.font=[UIFont systemFontOfSize:15 weight:UIFontWeightMedium];
     [self.view addSubview:banBen];
@@ -66,7 +69,7 @@
     
     
     CGFloat btnW=(JX_SCREEN_WIDTH-114)/3;
-    NSArray *images=@[@"diyi",@"passes",@"yinguo"];
+    NSArray *images=@[@"yinguo",@"passes",@"diyi"];
     UIButton *btn=nil;
     for (int i=0; i<images.count; i++) {
          btn=[[UIButton alloc]init];
@@ -102,7 +105,7 @@
     
     CGFloat btnW2=(JX_SCREEN_WIDTH-20)/3;
     
-    NSArray *titles=@[@"第一卡格扬格",@"菲律宾PARCOR",@"英国曼岛"];
+    NSArray *titles=@[@"英国曼岛博彩监督委员会",@"第一卡格扬格",@"菲律宾PARCOR"];
     //NSArray *titles=@[@"英国曼岛博彩监督委员会",@"第一卡格扬格",@"PAGCOR"];
     for (int i=0; i<titles.count; i++) {
          UIButton *btn=[[UIButton alloc]init];

+ 2 - 2
shiku_im/controller/ADView/DYAdAlertView/DYAdAlertView.m

@@ -283,6 +283,8 @@
                 animation.loopAnimation = YES;
                 animation.frame =  CGRectMake(0, JX_SCREEN_HEIGHT>=812?64:0, ScreenWidth, ScreenHeight>=812?JX_SCREEN_HEIGHT-JX_SCREEN_TOP-64:JX_SCREEN_HEIGHT);
                 [weakSelf addSubview:animation];
+                UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc]initWithTarget:weakSelf action:@selector(tapContentImgView:)];
+                [animation addGestureRecognizer:singleTap];
                 UIButton *closeBtn = [[UIButton alloc]init];
                 [closeBtn setTitle:@"x" forState:UIControlStateNormal];
                 closeBtn.titleLabel.font=[UIFont systemFontOfSize:20 weight:UIControlStateNormal];
@@ -300,8 +302,6 @@
             }];
         
             
-            UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapContentImgView:)];
-            [self addGestureRecognizer:singleTap];
             [_scrollView addSubview:item];
             
         }