circle-menu
circle-menu copied to clipboard
Question:
How would you go about having the menu be in the open position when app loads
have you solved it?
Maybe #23?
For me, I'm loading from ObjC, so I tagged the menu button in IB, then in my VC that instantiates the menu:
[self presentViewController:self.menuViewController animated:YES completion:^{
for (UIView* aView in self.menuViewController.view.subviews) {
if (aView.tag == 7895) {
// open the menu - I know it's a CircleMenu as that's what I tagged in IB
[((CircleMenu*)aView) sendActionsForControlEvents:UIControlEventTouchUpInside];
}
}
}];