-
Notifications
You must be signed in to change notification settings - Fork 96
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
Horizontal Expand #18
Comments
Right now, no way |
Can you please guide me any other Custom Library or any refrence |
I do not know any other libraries. But you can try to add LGPlusButtonsView without descriptions, make transform to rotate it on 90* and set offset to get right position. It's not simple and right way, but you can try it, if you want. |
Can you please guide me where I need to make the rotate |
I am not sure, you need to test it, but something like: #define kDegreesToRadians(d) ((d) * M_PI / 180)
LGPLusButtonsView *plusButtonsView = [LGPLu...
plusButtonsView.transform = CGAffineTransformMakeRotation(kDegreesToRadians(45));
[self.view addSubview plusButtonsView]; |
how to show buttons horizontally
The text was updated successfully, but these errors were encountered: