Reputation: 592
I have a view controller with UIModalTransitionStylePartialCurl.
On that view i have a "send email" button.
When i click on it the mail composer sheet is showing but its going under the PartialCurl.
Is there any way to display it in front?
Here is a screenshot:
Thanks...
Upvotes: 0
Views: 119
Reputation: 230
Try this out:
[self.view bringSubviewToFront:mailcomposerview];
Hope this helps.
Upvotes: 1