Skip to content
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

Question: #65

Open
jrnels02 opened this issue May 3, 2020 · 2 comments
Open

Question: #65

jrnels02 opened this issue May 3, 2020 · 2 comments

Comments

@jrnels02
Copy link

jrnels02 commented May 3, 2020

How would you go about having the menu be in the open position when app loads

@AliImam021
Copy link

have you solved it?

@jamesstout
Copy link

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];
            }
        }
    }];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants