I want to create UI in my application same as, iOS uses in
Settings > General > Profiles > Profiles > (final view with remove button)
Any Suggestions? As I am not sure that it’s readymade tool or madeup using different controls!!!
If I have to make it using controls provided by IB, from where should i start ??
I also want to add a button to add the detail to contacts(or say AddressBook).
I appreciate if someone can provide me answer with details.
Thanks.
It was a long time ago I had a provisioning profile on my iPhone, but I can remember that basically it was just an UITableView with images and text in its cells. You can simply use a custom subclass of UITableViewController of type UITableViewTypeGrouped and use the UITableViewDataSource or UITableViewDelegate methods to customiz the cells’ appearance (you will generally want a cell of UITableViewCellStyleSubtitle). You may also add UIBarButtonItems to the view controllers navigationItem property and wrap the view controller in an UINavigationController to get buttons on the top navigation bar.