objective c - Iphone GUI list of objects view -


I need some help with the GUI iPhone development, I am currently developing an iPhone application and ending with the argument argument of the app. Now I am trying to handle the GUI side, but I am unable to understand some things.

I have to represent the list of stores that will appear on each store line and for each line I need a button which can be turned on or off (very settings -> airplane mode which Is close button). Example:

Just turn on
polo on

I also want to represent the list of stores (like the favorite star) with the star sign on each line Example:

* (favorite star) ZARA
* (favorite star) polo

Is there any way to do this in the interface builder? Anything can give me the code if exaple it would be great

take for custom control in a UITableViewCells Some different paths can go: ..

  1. Create a UITableViewCell subclass in the interface builder and return the cell that is in cellForRowAtIndexPath
  2. Use the standard UITableViewCell accessoryView and add a UISwitch as a subview

If you want more customized cell (multiple controls, such as a switch and a star) I would like to use the interface builder because I can keep it out of control visually.


Comments