Reputation: 829
I want to show popover when i push to the button in iPad application. But popover is not resizeabl. i tried freeform size , make width and height 200px in storyboard. In order to understand differencies I make width and height 50 px but size has not changed yet. Popover show is working only one size.
How can I fix this resize problem ?
Thanks in replies.
Upvotes: 1
Views: 59
Reputation: 5183
try this.
popoverController.popoverContentSize = CGSizeMake(yourWidth, yourHeight);
Upvotes: 1