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
ZHFilterMenuView -> lineView的frame 我遇到的问题: 通常menuView 在导航栏下,lineView 的y坐标CGRectGetMaxY(self.frame) - 0.5,没有问题。 当外部使用(FilterViewController文件93行)的时候传入的y != 0 ,例如而是根据需求在下移动50,此时lineView的y坐标的值就是50-0.5,而lineView的父视图是self (MenuView),此时就无法达到想要的lineView在紧跟在bar的下面,效果成了距离bar下面好远。。。 我的方案:CGRectGetHeight(self.frame) - 0.5 代码位置:ZHFilterMenuView文件963行
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ZHFilterMenuView -> lineView的frame
我遇到的问题:
通常menuView 在导航栏下,lineView 的y坐标CGRectGetMaxY(self.frame) - 0.5,没有问题。
当外部使用(FilterViewController文件93行)的时候传入的y != 0 ,例如而是根据需求在下移动50,此时lineView的y坐标的值就是50-0.5,而lineView的父视图是self (MenuView),此时就无法达到想要的lineView在紧跟在bar的下面,效果成了距离bar下面好远。。。
我的方案:CGRectGetHeight(self.frame) - 0.5
代码位置:ZHFilterMenuView文件963行
The text was updated successfully, but these errors were encountered: