Enumeration: UITableViewScrollPosition
Overview
The position in the table view (top, middle, bottom) to which a given row is scrolled.
Constant Summary
- UITableViewScrollPositionNone
The table view scrolls the row of interest to be fully visible with a minimum of movement. if the row is already fully visible, no scrolling occurs. for example, if the row is above the visible area, the behavior is identical to that specified by uitableviewscrollpositiontop. this is the default.available in ios 2.0 and later.declared in uitableview.h.
- UITableViewScrollPositionTop
The table view scrolls the row of interest to the top of the visible table view.available in ios 2.0 and later.declared in uitableview.h.
- UITableViewScrollPositionMiddle
The table view scrolls the row of interest to the middle of the visible table view.available in ios 2.0 and later.declared in uitableview.h.
- UITableViewScrollPositionBottom
The table view scrolls the row of interest to the bottom of the visible table view.available in ios 2.0 and later.declared in uitableview.h.