I want to display a small view that does not cover the whole screen with:
- label (some description)
- two text fields (name, mobile number)
- two buttons (Order, cancel)
The view should in a UIAlertView sort of way to collect user input. Furthermore, the view has to have a custom layout (colors).
I can’t seem to find any built-in ways of doing it. Any suggestions?
How about the UIPopOverController? By subclassing you can customize it any number of ways you want to. While the default is display a UITableView you can change it to whatever you want to display.
If you want this to work on an iPhone you will need to look at a third party API. WEPopover API is a great choice.