I can't keep popover the same position on the screen after rotation. Is there any good way to do that, because just setting some frame to popover works terrible after rotating.popover.frame = CGRectMake(someFrame); After rotation popover looks fine only if it is in the center of the screen.

link|improve this question

Just check this link also.. stackoverflow.com/questions/3670981/… – dead_soldier Jan 30 at 14:24
Thanks for : presentPopoverFromRect:inView can be used when popover is visible – George Jan 30 at 15:56
feedback

2 Answers

up vote 0 down vote accepted

You can do this in didRotateFromInterfaceOrientation: method of the view controller that you used to present the popover.

Use setPopoverContentSize:animated: method for setting the size of the popover.

link|improve this answer
2  
Does this method change the popover origin? I do not need to change the size of popover content, just to keep the origin. – George Jan 30 at 14:32
feedback

I too have similar problem which i resolve by this

[myPop presentPopoverFromRect:myfield.frame inView:myscrollview permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

where myfield is frame from which you want to show your popover and myscrollview is container view in which you add your popover as subview.(in my case its my scrollview, instead of putting inView:self.view i use inView:myscrollview.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.