当UINavigationController以模态方式呈现时,UIBarButtonItems移位

前端之家收集整理的这篇文章主要介绍了当UINavigationController以模态方式呈现时,UIBarButtonItems移位前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在iOS应用程式扩充功能中以模态方式呈现UINavigationController:
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];       
nav.modalPresentationStyle = UIModalPresentationFormSheet;
nav.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentViewController:nav animated:YES completion:nil];

当导航控制器出现时,其根视图控制器的UIBarButtonItems跳转位置:

我正在创建并添加viewDidLoad中的按钮.它们只是标准的按钮项目:

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(done)];

我不会覆盖viewDidAppear(这似乎是按钮跳跃的点).

在我的应用程序内提交相同的导航控制器/根视图控制器,而不是应用程序扩展,不会给我同样的问题.有任何想法吗?

解决方法

我希望有人找到一个更好的方法来做到这一点,但我目前的解决方案是创建独立按钮,然后使用[[UIBarButtonItem alloc] initWithCustomView:]按钮.不理想,而且缩进仍然存在,但奇怪的跳跃不再发生.

如果您的缩位困扰您,您还可以在按钮的外侧设置负的固定空间,使其更靠近边缘.

这里有一个例子,包括spacer:

UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
<other button config here,set targets,whatever>
[button sizeToFit];
UIBarButtonItem *leftBarButton = [[UIBarButtonItem alloc] initWithCustomView:button];
UIBarButtonItem *fixedSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
[fixedSpace setWidth:-8.0f];

self.navigationItem.leftBarButtonItems = @[fixedSpace,leftBarButton];

这只会在我的分机扩展上发生,我没有任何与分离的控制器或任何类似的内容相关的问题.

原文链接:https://www.f2er.com/iOS/336047.html

猜你在找的iOS相关文章