Search code examples
ios7

iOS7-UItableViewCell display in a table view with style Grouped


In iOS7 the grouped table view's cell is displayed to full width of the table view more like a plain table view style. But in the settings app of the simulator the grouped style looks different. Could any help with implementing this type of cell?


Solution

  • This 'full width' is a default by iOS7, from the Apple's Transition guid:

    Each group extends the full width of the screen.

    For the settings, it is not necessary that all apples' controls look standard, You need to do some kind of tweak by your self, maybe put background for the table cells.

    Little advice: don't mess the the table nor cell design for now and keep using the standard until the people get used to it.