Open tspike opened 11 years ago
This appears to be because the _fromView instance variable gets set when presentPopoverFromView is called and never gets cleared.
To work around it in my project, I added the following method to FPPopoverController:
- (void) resetView { SAFE_ARC_RELEASE(_fromView); _fromView = nil; }
I call this method when I need to move the popover and it appears to work.
This appears to be because the _fromView instance variable gets set when presentPopoverFromView is called and never gets cleared.
To work around it in my project, I added the following method to FPPopoverController:
I call this method when I need to move the popover and it appears to work.