We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
当将要push的控制器设置了 self.fd_prefersNavigationBarHidden = YES时,HBDNavigationController 的 - fakeBarFrameForViewController:方法会崩溃。
self.fd_prefersNavigationBarHidden = YES
HBDNavigationController
- fakeBarFrameForViewController:
原因是该方法内部第一行 UIView *back = self.navigationBar.subviews[0]; 数组越界,self.navigationBar.subviews元素个数为0.
UIView *back = self.navigationBar.subviews[0];
self.navigationBar.subviews
The text was updated successfully, but these errors were encountered:
No branches or pull requests
当将要push的控制器设置了
self.fd_prefersNavigationBarHidden = YES
时,HBDNavigationController
的- fakeBarFrameForViewController:
方法会崩溃。原因是该方法内部第一行
UIView *back = self.navigationBar.subviews[0];
数组越界,self.navigationBar.subviews
元素个数为0.The text was updated successfully, but these errors were encountered: