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
- (void)menuBarButtonPressedForViewController:(UIViewController *)controller
{
RNGridMenu *gridMenu = [RNGridMenu visibleGridMenu];
gridMenu = [[RNGridMenu alloc] initWithItems:self.gridMenuItems]; // Already have the menu items array
[gridMenu setDelegate:self];
[gridMenu showInViewController:controller center:CGPointMake(self.view.bounds.size.width/2.f, self.view.bounds.size.height/2.f)];
}
So this works great!
However, if I scroll the table view, and while the table view is moving, I try to open the grid menu, the grid menu will also move with the table view and it results in the grid menu either shifted up or down.
Next I tried to stop the table from moving before calling the grid menu, it works most of the time. However if the table view is in the process of refreshing(where you pull down the table and a spinner spins at the top). The grid menu will also be shifted.
The text was updated successfully, but these errors were encountered:
with the parent tabbarviewcontroller instead of the children viewcontroller(in this case the tableviewcontroller) the whole screen will be blurred out and I think that might solve the problem too. Don't have time to test right now.
Hi great work on this project, I'm loving it.
However there is one little bug that probably hasn't seen very often.
I have a table view controller inside a tab bar view controller.
Currently, I make the call from the table view controller like this
and then inside the tab bar view controller:
and
So this works great!
However, if I scroll the table view, and while the table view is moving, I try to open the grid menu, the grid menu will also move with the table view and it results in the grid menu either shifted up or down.
Next I tried to stop the table from moving before calling the grid menu, it works most of the time. However if the table view is in the process of refreshing(where you pull down the table and a spinner spins at the top). The grid menu will also be shifted.
The text was updated successfully, but these errors were encountered: