I have created a TableView(Grouped Table View). And I can list the items in the table view. But I want to know how the below table is displayed
Like Calender is in the left side, and Gregorian in the Right Side ?? How that Gregorian is displayed in the Right Side ?? Is it a Custom TableView, Can anyone help me how to achieve that ?
Those are just regular cells with
style = UITableViewCellStyleValue1and alsoaccessoryType = UITableViewCellAccessoryDisclosureIndicator.To make one programmatically:
(Note that in real life you would probably try to
dequeueReusableCellWithIdentifier:, and only create a new cell if that returns nil.)Or, if you’re working with IB, set “Style” to “Right Detail” and “Accessory” to “Disclosure Indicator”.