59 lines
1.7 KiB
Objective-C
59 lines
1.7 KiB
Objective-C
//
|
|
// GIGaAboutUsVC.m
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/19.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "GIGaAboutUsVC.h"
|
|
|
|
@interface GIGaAboutUsVC ()
|
|
|
|
@end
|
|
|
|
@implementation GIGaAboutUsVC
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
[self addNavTitile:@"关于我们"];
|
|
self.view.backgroundColor = GIGA_MAIN_BGCOLOR;
|
|
// Do any additional setup after loading the view from its nib.
|
|
self.backWhiteBorderView.layer.masksToBounds = YES;
|
|
self.backWhiteBorderView.layer.borderWidth = 1;
|
|
self.backWhiteBorderView.layer.cornerRadius = 2;
|
|
self.backWhiteBorderView.layer.borderColor = [UIColor whiteColor].CGColor;
|
|
NSDictionary *infoDic=[[NSBundle mainBundle] infoDictionary];
|
|
// CFShow((__bridge CFTypeRef)(infoDic));
|
|
NSString *app_Version=[infoDic objectForKey:@"CFBundleShortVersionString"];
|
|
NSLog(@"app_Version%@",app_Version);
|
|
self.curentV.text = [NSString stringWithFormat:@"当前版本:%@",app_Version];
|
|
|
|
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(xiyiDetail)];
|
|
[self.xieyiLab addGestureRecognizer:tap];
|
|
//self.xieyiLab.backgroundColor = [UIColor blueColor];
|
|
}
|
|
|
|
-(void)xiyiDetail{
|
|
|
|
|
|
}
|
|
|
|
|
|
- (void)didReceiveMemoryWarning {
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
/*
|
|
#pragma mark - Navigation
|
|
|
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
|
|
// Get the new view controller using [segue destinationViewController].
|
|
// Pass the selected object to the new view controller.
|
|
}
|
|
*/
|
|
|
|
@end
|