Open jneiluj opened 11 years ago
In FPPopoverView.m change line 507: contentRect.origin = CGPointMake(10,30) to: contentRect.origin = CGPointMake(10,10)
My fix is to add one more checking at FPPopoverView.m
line 511:
if (self.border == NO) {
contentRect.origin = CGPointMake(10, 10);
contentRect.size = CGSizeMake(self.bounds.size.width-20, self.bounds.size.height-20);
}
The unwanted title will be re-created if pushing a `UINavigation`` into FPPopover
When selecting border = NO and arrowDirection = FPPopoverNoArrow, the top of fppopover still display even if viewController.title = nil.
This issues is reproduced only with FPPopoverNoArrow