Open yFeii opened 5 years ago
提bug前必看 请先回答下列三个问题,否则不允处理,谢谢配合。 1、我最新的Demo是否有这个bug?【如果Demo没问题,请升级新版】 答:有
2、你用的是什么版本?升级到最新版后是否正常? 答:最新版
3、是否有改动过我库内部的代码?【如有,请告诉我你改了什么】 答:无
bug内容描述 当navigationBar 的translucent 为false 时,剪裁图片 的剪裁区域偏离 导航高度
我如何复现这个bug? 在demo中添加如下代码,并添加 storyboard 的 identifier 为“ main”
(BOOL)application:(UIApplication )application didFinishLaunchingWithOptions:(NSDictionary )launchOptions {
TestViewController t = [[TestViewController alloc] init]; UINavigationController nav = [[UINavigationController alloc] initWithRootViewController:t]; self.window.rootViewController = nav; return YES; } /TestViewController.m/
(void)viewDidLoad { [super viewDidLoad]; self.navigationController.navigationBar.translucent = false;
// Do any additional setup after loading the view. }
(void)touchesBegan:(NSSet<UITouch > )touches withEvent:(UIEvent )event { UIStoryboard board = [UIStoryboard storyboardWithName: @"Main" bundle: nil]; ViewController * main = [board instantiateViewControllerWithIdentifier: @"main"]; [self.navigationController pushViewController:main animated:true]; } 截图
其它说明 有没有其它要补充的?比如你的初始化TZImagePickerController的代码 iOS 13.1.3 iPhoneX
可以通过 在离开 A VC 的时候 添加
self.navigationController.navigationBar.translucent = true;
暂时解决
@yFeii 请问这个问题是怎么解决的,在哪里加的这句代码
提bug前必看 请先回答下列三个问题,否则不允处理,谢谢配合。 1、我最新的Demo是否有这个bug?【如果Demo没问题,请升级新版】 答:有
2、你用的是什么版本?升级到最新版后是否正常? 答:最新版
3、是否有改动过我库内部的代码?【如有,请告诉我你改了什么】 答:无
bug内容描述 当navigationBar 的translucent 为false 时,剪裁图片 的剪裁区域偏离 导航高度
我如何复现这个bug? 在demo中添加如下代码,并添加 storyboard 的 identifier 为“ main”
(BOOL)application:(UIApplication )application didFinishLaunchingWithOptions:(NSDictionary )launchOptions {
TestViewController t = [[TestViewController alloc] init]; UINavigationController nav = [[UINavigationController alloc] initWithRootViewController:t]; self.window.rootViewController = nav; return YES; } /TestViewController.m/
(void)viewDidLoad { [super viewDidLoad]; self.navigationController.navigationBar.translucent = false;
// Do any additional setup after loading the view. }
(void)touchesBegan:(NSSet<UITouch > )touches withEvent:(UIEvent )event { UIStoryboard board = [UIStoryboard storyboardWithName: @"Main" bundle: nil]; ViewController * main = [board instantiateViewControllerWithIdentifier: @"main"]; [self.navigationController pushViewController:main animated:true]; } 截图
其它说明 有没有其它要补充的?比如你的初始化TZImagePickerController的代码 iOS 13.1.3 iPhoneX