My problem is similar to this
But I am embedding my view in scrollview and by following this article my problem still persist, is there any way to fix this?
My problem is similar to this
But I am embedding my view in scrollview and by following this article my problem still persist, is there any way to fix this?
When you present a PickerView
or MFMailComposeViewController
then just write the following code.
[[[[AppDelegate sharedInstance] window] rootViewController] presentViewController:aImagePicker animated:YES completion:nil]
May be this code will help you.
If the page layout has become wrong, particularly in a tableview or scrollview you can call :
[self.view layoutIfNeeded];
Which will go over all autolayout and move it about to correct it if required. I suggest you call that after dismissing the MFMailComposeViewController to be sure.