美文网首页
iOS11后导航栏返回按钮自定义

iOS11后导航栏返回按钮自定义

作者: airron | 来源:发表于2018-04-18 15:50 被阅读12次
        UIImage * backImage = [[UIImage imageNamed:@"title_back_icon"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
        [UINavigationBar.appearance setBackIndicatorImage:backImage];
        [UINavigationBar.appearance setBackIndicatorTransitionMaskImage:backImage];
    
        if(@available(iOS 11, *)) {
            [[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor clearColor]} forState:UIControlStateNormal];
            [[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor clearColor]} forState:UIControlStateHighlighted];
        } else {
            [[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(-60, -60) forBarMetrics:UIBarMetricsDefault];
        }
    
    [转自StackOverFlow](https://stackoverflow.com/questions/46193204/custom-back-indicator-image-and-ios-11)

    相关文章

      网友评论

          本文标题:iOS11后导航栏返回按钮自定义

          本文链接:https://www.haomeiwen.com/subject/avovkftx.html