// // GiGaMeViewController.m // GIGA // // Created by lianxiang on 2018/8/22. // Copyright © 2018年 com.giga.ios. All rights reserved. // #import "GiGaMeViewController.h" #import "GiGaUserViewController.h" @interface GiGaMeViewController () @end @implementation GiGaMeViewController - (void)viewDidLoad { [super viewDidLoad]; self.title = @"我的"; // Do any additional setup after loading the view. } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { GiGaUserViewController *userVC= [[GiGaUserViewController alloc] init]; [self.navigationController pushViewController:userVC animated:YES]; } @end