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
when I set popover.arrowDirection = FPPopoverArrowDirectionUp
it was crash and shows
Assertion failed: (CGFloatIsValid(x) && CGFloatIsValid(y)), function void CGPathMoveToPoint(CGMutablePathRef, const CGAffineTransform *, CGFloat, CGFloat), file Paths/CGPath.cc, line 254.
on iOS 8, getting bad access on
-(CGFloat)parentWidth method
return _parentView.bounds.size.width; line.
For solution: in presentPopoverFromPoint method
_parentView = [_window.subviews objectAtIndex:0];
line replaced with;
_parentView = _window.rootViewController.view;
The text was updated successfully, but these errors were encountered: