我正在我的应用程序屏幕中央放置一个“打开方式...”菜单。问题是iOS在矩形的底部添加了一个箭头。是否有可能没有箭头?
如果我使用CGRectZero,我没有箭头,但我无法将菜单定位到中心。这是代码:
CGPoint centerPoint = [Rhodes sharedInstance].window.center;
CGRect centerRec = CGRectMake(centerPoint.x, centerPoint.y, 0, 0);
BOOL isValid = [docController presentOpenInMenuFromRect:centerRec inView:[Rhodes sharedInstance].window animated:YES];