|
@@ -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];
|