系统UINavigationController的返回

来源:互联网 发布:天龙八部男的染发数据 编辑:程序博客网 时间:2024/06/03 22:59

UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:viewController];    nav.navigationBar.tintColor = kGlobalColor;    [[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -60) forBarMetrics:UIBarMetricsDefault];

0 0