-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
侧滑返回的时候,右边自定义按钮闪烁 #183
Comments
试着加上 如果不能,请告诉我,假如从 A push 到 B,这个按钮是定义在 A 还是 B? |
🙏大佬的导航库,节省了我很多开发工作量。
// redView2.translatesAutoresizingMaskIntoConstraints = NO; 点击这个按钮后进入下一个控制器,然后侧滑退出二级UI后,这个时候发现,导航栏右边的按钮会突然显示 |
大佬,帮我看一下下,确实存在这个现象。 |
🙏大佬的导航库,节省了我很多开发工作量。
// redView2.translatesAutoresizingMaskIntoConstraints = NO; 点击这个按钮后进入下一个控制器,然后侧滑退出二级UI后,这个时候发现,导航栏右边的按钮会突然显示 |
@winfast 这是个兼容性问题,在 iOS 16 以上会出现,暂时不清楚原因。 |
我昨天调试的发现主要是 |
这行代码去掉会引发其它问题。 |
你好,在iOS15以上的系统,我修改了一下你的这个方法代码如下
|
您好:我在使用最新的版本发现了一个奇怪的现象,经过代码调试发现是
-(void)updateNavigationBarTintColorForViewController:(UIViewController *)vc 这个方法中
self.navigationBar.tintColor = vc.hbd_tintColor;引起了的
我是这样写的,
UIControl redView2 = UIControl.alloc.init;
redView2.frame = CGRectMake(0, 0, 80, 40);
redView2.backgroundColor = UIColor.redColor;
[redView2 addTarget:self action:@selector(pushToNext:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItemitem2 = [[UIBarButtonItem alloc] initWithCustomView:redView2];//定义左边按钮
self.navigationItem.rightBarButtonItem = item2;
在侧滑返回的时候,右边的按钮会闪一下
The text was updated successfully, but these errors were encountered: