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
No description provided.
The text was updated successfully, but these errors were encountered:
问题找到了, // YCXMenuOverlay *overlay = [[YCXMenuOverlay alloc] initWithFrame:view.bounds]; 这句是原来的,是把整个屏幕的大小覆盖上了,改成下面这样就可以了
YCXMenuOverlay *overlay = [[YCXMenuOverlay alloc] initWithFrame:_contentView.bounds]; overlay.frame = CGRectMake(self.frame.origin.x, self.frame.origin.y, _contentView.frame.size.width, _contentView.frame.size.height); self.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
这样overlay的大小和位置正好和弹出的视图在一致,点击正常,
Sorry, something went wrong.
但是怎么修改items之间横线的颜色
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: