iOS 11 使用两种方法替换(Method Swizzling)去掉导航栏返回按钮的文字
2019/7/9 22:41:11
本文主要是介绍iOS 11 使用两种方法替换(Method Swizzling)去掉导航栏返回按钮的文字,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
方法一:设置BarButtonItem的文本样式为透明颜色,代码如下:
[[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor clearColor]} forState:UIControlStateNormal]; [[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor clearColor]} forState:UIControlStateHighlighted];
此外这种方法会导致title不能居中,被偏移很多,如下所示(虽然不被显示,也占了导航栏左边很大一部分位置)
方法二:给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(参考官网 还是官网解释的清楚)
总结
以上所述是小编给大家介绍的iOS 11 使用两种方法替换(Method Swizzling)去掉导航栏返回按钮的文字,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对找一找教程网网站的支持!
这篇关于iOS 11 使用两种方法替换(Method Swizzling)去掉导航栏返回按钮的文字的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Axios库资料:新手入门必读教程
- 2024-11-11Axios库项目实战:新手入门教程
- 2024-09-29Axios库教程:初学者必备指南
- 2024-08-29Axios库资料:新手入门指南与基本使用教程
- 2024-03-14system bios shadowed
- 2024-03-14gabios
- 2024-02-07iOS应用提交上架的最新流程
- 2024-02-06打包 iOS 的 IPA 文件
- 2023-12-07uniapp打包iOS应用并通过审核:代码混淆的终极解决方案 ?
- 2023-11-25uniapp IOS从打包到上架流程(详细简单) 原创