For the app i'm building, some of the menu items need to not automatically close the menu. Some do, some don't. Currently there is no way to easily prevent the menu from closing. Yes, the QuadCurveMenuDelegate has quadCurveMenuShouldClose, but that is only called if the user presses the main button, not the children.
Without a great deal of thought, i figured a new delegate method along the lines of
-(BOOL) quadCurveMenu:(QuadCurveMenu *)menu shouldCloseFromItem:(QuadCurveMenuItem *)menuItem;
this would allow me, per child, to dictate if the menu should close automatically or not.
For the app i'm building, some of the menu items need to not automatically close the menu. Some do, some don't. Currently there is no way to easily prevent the menu from closing. Yes, the QuadCurveMenuDelegate has quadCurveMenuShouldClose, but that is only called if the user presses the main button, not the children.
Without a great deal of thought, i figured a new delegate method along the lines of
this would allow me, per child, to dictate if the menu should close automatically or not.