Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this:

enter image description here

And have this, when presenting modally:

enter image description here

Some code jsut before presenting webview:

webViewController.modalInPopover = YES;
webViewController.modalPresentationStyle = UIModalTransitionStyleCoverVertical;

And have this in webViewController's viewDidLoad template:

self.contentSizeForViewInPopover = CGSizeMake(320.0, 436.0);

I've looked for every frame of every role playing view, but frame.sizes are correct. Anybody with similar experience with a solution for that?

share|improve this question

1 Answer

up vote 0 down vote accepted

First I assigned a transistion style to presentation style. And that was the enum for fullscreen.

Having this in webViewController init...

self.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
self.modalPresentationStyle = UIModalPresentationCurrentContext;

...solved the problem.

I'll try to move it to -(void)awakeFromNib; to get rid of hardcoded size.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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