重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

iOS11中如何使用两种方法替换MethodSwizzling去掉导航栏返回按钮的文字

小编给大家分享一下iOS11中如何使用两种方法替换Method Swizzling去掉导航栏返回按钮的文字,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

成都创新互联公司是专业的增城网站建设公司,增城接单;提供网站设计、网站制作,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行增城网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!

  方法一:设置BarButtonItem的文本样式为透明颜色,代码如下:

[[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor clearColor]} forState:UIControlStateNormal]; 
[[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor clearColor]} forState:UIControlStateHighlighted];

   此外这种方法会导致title不能居中,被偏移很多,如下所示(虽然不被显示,也占了导航栏左边很大一部分位置)

iOS11中如何使用两种方法替换Method Swizzling去掉导航栏返回按钮的文字

     方法二:给UIViewController添加类别,然后在load方法里面用Method Swzilling方法替换 交换ViewDidAppear,部分代码如下

+(void)load {
  swizzleMethod([self class], @selector(viewDidAppear:), @selector(ac_viewDidAppear));
}
- (void)ac_viewDidAppear{
  self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc]
                       initWithTitle:@""
                       style:UIBarButtonItemStylePlain
                       target:self
                       action:nil];
  [self ac_viewDidAppear];
}
void swizzleMethod(Class class, SEL originalSelector, SEL swizzledSelector)
{
  // the method might not exist in the class, but in its superclass
  Method originalMethod = class_getInstanceMethod(class, originalSelector);
  Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
  // class_addMethod will fail if original method already exists
  BOOL didAddMethod = class_addMethod(class, originalSelector, method_getImplementation(swizzledMethod), method_getTypeEncoding(swizzledMethod));
  // the method doesn't exist and we just added one
  if (didAddMethod) {
    class_replaceMethod(class, swizzledSelector, method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod));
  }
  else {
    method_exchangeImplementations(originalMethod, swizzledMethod);
  }
}

注意事项:

要给整个backButtonItem赋值才可以,?这种方法不行,因为backBarButtonItem默认为空,给nil方法消息,默认声明都不执行(参考官网)

self.navigationItem.backBarButtonItem.title = @" ";

leftBarButtonItem 与backBarButtonItem 的显示关系:

有leftBarButtonItem则优先显示当前VC的leftBarButtonItem,无则显示上个VC的backBarButtonItem,再无则显示上个VC的title(参考官网   还是官网解释的清楚)

iOS11中如何使用两种方法替换Method Swizzling去掉导航栏返回按钮的文字

以上是“iOS11中如何使用两种方法替换Method Swizzling去掉导航栏返回按钮的文字”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!


当前名称:iOS11中如何使用两种方法替换MethodSwizzling去掉导航栏返回按钮的文字
标题URL:http://cqcxhl.cn/article/iioohs.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP