LJContactManager icon indicating copy to clipboard operation
LJContactManager copied to clipboard

被导航搜索栏遮盖

Open WeiCY opened this issue 6 years ago • 3 comments

如题,遮盖问题如何解决

WeiCY avatar Dec 12 '18 08:12 WeiCY

可以给我截图或者demo吗

leejayID avatar Dec 14 '18 07:12 leejayID

你好,谢谢你的回复 我解决了 应该是我的问题。 if (@available(iOS 11.0, *)){ [[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever]; } else { self.automaticallyAdjustsScrollViewInsets = NO; }

我之前写了这个 我在弹出通讯录的时候改了下状态就可以了。 不知道您是不是有更好的解决方法,有的话请告诉我 谢谢

在 2018年12月14日,下午3:17,LeeJay [email protected] 写道:

可以给我截图或者demo吗

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/leejayID/LJContactManager/issues/20#issuecomment-447237425, or mute the thread https://github.com/notifications/unsubscribe-auth/AQ8Hy5VIDYWtAgPhR-mv27hmUxvR4rz7ks5u41CMgaJpZM4ZO8sy.

WeiCY avatar Dec 14 '18 07:12 WeiCY

遇到类似问题,由于导航栏透明的原因,解决了,需要设置一下导航栏 [[UINavigationBar appearance] setTranslucent:NO];

Tan-SL avatar Sep 08 '19 10:09 Tan-SL