I am looking to build out a custom modal view for an ipad app. I thought I could simply use the built in modal view controller ability and then customize it’s appearance to fit my designs. Turns out that’s not true. Any good advice or documentation on how I would go about doing so. My Objective-C knowledge is limited.
Share
Turns out it’s not true that that’s not true.
Your job is do create a custom view controller and design its view in any way you want. Then present it modally with
presentModalViewController:animated:afte setting itsmodalPresentationStyleaccording to your needs.