circle-menu icon indicating copy to clipboard operation
circle-menu copied to clipboard

Question:

Open jrnels02 opened this issue 4 years ago • 2 comments

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

jrnels02 avatar May 03 '20 15:05 jrnels02

have you solved it?

AliImam021 avatar Sep 23 '20 14:09 AliImam021

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

jamesstout avatar Mar 26 '21 14:03 jamesstout