解决方法
所以方法就是:遵循UINavigationController的代理,用代理方法解决该Bug,代码如下:
实现代理方法:
- {
- // 删除系统自带的tabBarButton
- for (UIView *tabBar in self.tabBarController.tabBar.subviews) {
- if ([tabBar isKindOfClass:NSClassFromString(@"UITabBarButton")]) {
- [tabBar removeFromSuperview];
- }
- }
- }