fozoglu
fozoglu

Reputation: 829

Popover view not resizeable with storyboard

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.

enter image description here enter image description here

Upvotes: 1

Views: 59

Answers (1)

Dheeraj Singh
Dheeraj Singh

Reputation: 5183

try this.

popoverController.popoverContentSize = CGSizeMake(yourWidth, yourHeight);

Upvotes: 1

Related Questions