FPPopover
FPPopover copied to clipboard
The target view controller not added as child.
Subview is added to the FPPopoverController, but content view controller not added as child view controller. Consequence of this is lifecycle methods are not passed down to the content view (viewWillAppear, viewDidLoad, etc). Use [self addChildViewController:contentView] in FPPopoverController to fix it.
thank you!