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
I want to do the effect like Path ,and how to add it to UITabbarController?
when I add it to UITabbarController,I can't add the gray background view to the key window correctly ,because when I use PushView Controller,the AwesomeMenu will not disappear.
The text was updated successfully, but these errors were encountered:
CGPoint hitpoint = [self convertPoint:point fromView:self];
if ([self pointInside:hitpoint withEvent:event]) {//hit custom tabbar
return [super hitTest:point withEvent:event];
}
for (AwesomeMenu Item *item in self.menu.menuItems) {
CGPoint hitPoint = [item convertPoint:point fromView:self];
if ([item pointInside:hitPoint withEvent:event]){
NSLog(@"item");
return item;
}
}
if(self.menuReallyExpanded){//because one tap will call this method two times ,so we have to detect if the menu is really expanded or really close
[self.menu close];
return self;
}else{
return [super hitTest:point withEvent:event];
}
I want to do the effect like Path ,and how to add it to UITabbarController?
when I add it to UITabbarController,I can't add the gray background view to the key window correctly ,because when I use PushView Controller,the AwesomeMenu will not disappear.
The text was updated successfully, but these errors were encountered: