UITableViewController Class Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/UIKit.framework |
| Availability | Available in iOS 2.0 and later. |
| Companion guide | |
| Declared in | UITableViewController.h |
Overview
The UITableViewController class creates a controller object that manages a table view. It implements the following behavior:
If a nib file is specified via the
initWithNibName:bundle:method (which is declared by the superclassUIViewController),UITableViewControllerloads the table view archived in the nib file. Otherwise, it creates an unconfiguredUITableViewobject with the correct dimensions and autoresize mask. You can access this view through thetableViewproperty.If a nib file containing the table view is loaded, the data source and delegate become those objects defined in the nib file (if any). If no nib file is specified or if the nib file defines no data source or delegate,
UITableViewControllersets the data source and the delegate of the table view toself.When the table view is about to appear the first time it’s loaded, the table-view controller reloads the table view’s data. It also clears its selection (with or without animation, depending on the request) every time the table view is displayed. The
UITableViewControllerclass implements this in the superclass methodviewWillAppear:. You can disable this behavior by changing the value in theclearsSelectionOnViewWillAppearproperty.When the table view has appeared, the controller flashes the table view’s scroll indicators. The
UITableViewControllerclass implements this in the superclass methodviewDidAppear:.It implements the superclass method
setEditing:animated:so that if a user taps an Edit|Done button in the navigation bar, the controller toggles the edit mode of the table.
You create a custom subclass of UITableViewController for each table view that you want to manage. When you initialize the controller in initWithStyle:, you must specify the style of the table view (plain or grouped) that the controller is to manage. Because the initially created table view is without table dimensions (that is, number of sections and number of rows per section) or content, the table view’s data source and delegate—that is, the UITableViewController object itself—must provide the table dimensions, the cell content, and any desired configurations (as usual). You may override loadView or any other superclass method, but if you do be sure to invoke the superclass implementation of the method, usually as the first method call.
Tasks
Initializing the UITableViewController Object
Getting the Table View
-
tableViewproperty
Configuring the Table Behavior
-
clearsSelectionOnViewWillAppearproperty
Refreshing the Table View
-
refreshControlproperty
Properties
clearsSelectionOnViewWillAppear
A Boolean value indicating if the controller clears the selection when the table appears.
Discussion
The default value of this property is YES. When YES, the table view controller clears the table’s current selection when it receives a viewWillAppear: message. Setting this property to NO preserves the selection.
Availability
- Available in iOS 3.2 and later.
Declared In
UITableViewController.hrefreshControl
The refresh control used to update the table contents.
Discussion
The default value of this property is nil.
Assigning a refresh control to this property adds the control to the view controller’s associated interface. You do not need to set the frame of the refresh control before associating it with the view controller. The view controller updates the control’s height and width and sets its position appropriately.
The table view controller does not automatically update table’s contents in response to user interactions with the refresh control. When the user initiates a refresh operation, the control generates a UIControlEventValueChanged event. You must associate a target and action method with this event and use them to refresh your table’s contents.
Availability
- Available in iOS 6.0 and later.
Declared In
UITableViewController.htableView
Returns the table view managed by the controller object.
Availability
- Available in iOS 2.0 and later.
Declared In
UITableViewController.hInstance Methods
initWithStyle:
Initializes a table-view controller to manage a table view of a given style.
Parameters
- style
A constant that specifies the style of table view that the controller object is to manage (
UITableViewStylePlainorUITableViewStyleGrouped).
Return Value
An initialized UITableViewController object or nil if the object couldn’t be created.
Discussion
If you use the standard init method to initialize a UITableViewController object, a table view in the plain style is created.
Availability
- Available in iOS 2.0 and later.
Declared In
UITableViewController.h© 2012 Apple Inc. All Rights Reserved. (Last updated: 2012-09-19)