在作iOS应用时 应用在做多任务切换时 会出现闪屏或者在滑动屏幕时
自己写的应用会时而显示应用的界面时而不显示.
定位发现原因是自己设置UIBarButtonItem的显示模式使标题向左移动
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(NSIntegerMin, NSIntegerMin) forBarMetrics:UIBarMetricsDefault];
有人建议使用在界面中重新创建UIBarButtonItem设置导航栏左边的按钮
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithImage:<#(nullable UIImage *)#> style:<#(UIBarButtonItemStyle)#> target:<#(nullable id)#> action:<#(nullable SEL)#>];
self.navigationItem.leftBarButtonItem = item;
但是这样会导致滑动屏幕放回上一级界面的功能丢失: 这是应为底层实现的放回代理原因.
所以我们可以还是使用修改UIBarButtonItem的显示模式使标题向左移动,但是一定的距离不适用系统的宏就可以了.
比如:
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(922337203685, 922337203685) forBarMetrics:UIBarMetricsDefault];
这样前面的问题就全解决了.