I need some modal view on iPhone app where I will display few labels, one UIImageView and two buttons. Design needs to be whole custom. Is this custom UIAlertView? How to make something similar?

|
I need some modal view on iPhone app where I will display few labels, one UIImageView and two buttons. Design needs to be whole custom. Is this custom UIAlertView? How to make something similar?
|
|||
|
|
|
There is a nice blog post by Jeff LaMarche about how to create a custom Alert View. You can take inspiration from there. http://iphonedevelopment.blogspot.com/2010/05/custom-alert-views.html |
|||
|
|
See the source for Tapku library. They have this option - you can always hack/tweak source code for it. Its not that difficult though, Just a lot of layer magic going around (e.g. the vignette effect). and most of the assets are images. You just need to break it down properly. |
|||
|
|
|
Making a view like this is simple. You just need to create a custom view with the pieces that you want and just make it hidden or set the alpha to 0.0. Then un-hide it when you want to use it. To prevent interaction with other items behind the view put a blank semi-transparent view right behind your custom view. |
|||
|
|
|
|||
|
|
|
You can acquire that simply following the following steps
Finally you can Present this view where ever required. The effect will be, ViewA will cover the Background viewController, ViewB will server as suppressing effect for background view controller and views on B are the UIElement you will see. |
|||
|
|