You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For me, I'm loading from ObjC, so I tagged the menu button in IB, then in my VC that instantiates the menu:
[selfpresentViewController:self.menuViewController animated:YEScompletion:^{
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];
}
}
}];
How would you go about having the menu be in the open position when app loads
The text was updated successfully, but these errors were encountered: