iOS中表視圖(UITableView)使用詳解

轉自:“http://www.open-open.com/lib/view/open1430008922468.html

IOS中UITableView使用總結一、

- 初始化方法

- (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style; ?

這個方法初始化表視圖的frame大小并且設置一個風格,UITableViewStyle是一個枚舉,如下:

typedef NS_ENUM(NSInteger, UITableViewStyle) {??

?UITableViewStylePlain, ? ? ? // 標準的表視圖風格? ?

?UITableViewStyleGrouped ? ? ? // 分組的表視圖風格};

- 二、常用屬性獲取表視圖的風格(只讀屬性)

>@property (nonatomic, readonly) UITableViewStyle? ? ? ? ? style;

設置表示圖代理和數據源代理(代理方法后面討論)

@property (nonatomic, assign)? iddataSource;@property (nonatomic, assign)? iddelegate;

設置表示圖的行高(默認為44)

@property (nonatomic)CGFloat rowHeight;

設置分區的頭視圖高度和尾視圖高度(當代理方法沒有實現時才有效)

@property (nonatomic)? ? ? ? ? CGFloat? ? ? ? ? ? ? ? ? ? sectionHeaderHeight;

@property (nonatomic)? ? ? ? ? CGFloat? ? ? ? ? ? ? ? ? ? sectionFooterHeight;

設置一個行高的估計值(默認為0,表示沒有估計,7.0之后可用)

@property (nonatomic)? ? ? ? ? CGFloat? ? ? ? ? ? ? ? ? ? estimatedRowHeight;

注意:這個屬性官方的解釋是如果你的tableView的行高是可變的,那么設計一個估計高度可以加快代碼的運行效率。

下面這兩個屬性和上面相似,分別設置分區頭視圖和尾視圖的估計高度(7.0之后可用)

`@property (nonatomic)? ? ? ? ? CGFloat? ? ? ? ? ? estimatedSectionHeaderHeight;?

?@property (nonatomic)? ? ? ? ? CGFloat? ? ? ? ? ? estimatedSectionFooterHeight;`

設置分割線的位置

`@property (nonatomic)? ? ? ? ? UIEdgeInsets? ? ? ? ? ? ? ? separatorInset;`

如果細心,你可能會發現系統默認的tableView的分割線左端并沒有頂到邊沿。通過這個屬性,可以手動設置分割線的位置偏移,比如你向讓tableView的分割線只顯示右半邊,可以如下設置:

`UITableView * tab = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStylePlain];

tab.separatorInset=UIEdgeInsetsMake(0, tab.frame.size.width/2, 0,0);

設置tableView背景view視圖

@property(nonatomic, readwrite, retain) UIView *backgroundView;`

####三、常用方法詳解

- 重載tableView

`- (void)reloadData;`

重載索引欄

`- (void)reloadSectionIndexTitles;`

這個方法常用語新加或者刪除了索引類別而無需刷新整個表視圖的情況下。

獲取分區數

`- (NSInteger)numberOfSections;`

根據分區獲取行數

`- (NSInteger)numberOfRowsInSection:(NSInteger)section;`

獲取分區的大小(包括頭視圖,所有行和尾視圖)

`- (CGRect)rectForSection:(NSInteger)section;`

根據分區分別獲取頭視圖,尾視圖和行的高度

```

- (CGRect)rectForHeaderInSection:(NSInteger)section;

- (CGRect)rectForFooterInSection:(NSInteger)section;

- (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath;

```

獲取某個點在tableView中的位置信息

`- (NSIndexPath *)indexPathForRowAtPoint:(CGPoint)point;`

獲取某個cell在tableView中的位置信息

`- (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell;`

根據一個矩形范圍返回一個信息數組,數組中是每一行row的位置信息

`- (NSArray *)indexPathsForRowsInRect:(CGRect)rect;`

通過位置路徑獲取cell

`- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath;`

獲取所有可見的cell

`- (NSArray *)visibleCells;`

獲取所有可見行的位置信息

`- (NSArray *)indexPathsForVisibleRows;`

根據分區獲取頭視圖

`- (UITableViewHeaderFooterView *)headerViewForSection:(NSInteger)section;`

根據分區獲取尾視圖

`- (UITableViewHeaderFooterView *)footerViewForSection:(NSInteger)section;`

使表示圖定位到某一位置(行)

`- (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;`

注意:indexPah參數是定位的位置,決定于分區和行號。animated參數決定是否有動畫。scrollPosition參數決定定位的相對位置,它使一個枚舉,如下:

```

typedef NS_ENUM(NSInteger, UITableViewScrollPosition) {

UITableViewScrollPositionNone,//同UITableViewScrollPositionTop

UITableViewScrollPositionTop,//定位完成后,將定位的行顯示在tableView的頂部

UITableViewScrollPositionMiddle,//定位完成后,將定位的行顯示在tableView的中間

UITableViewScrollPositionBottom//定位完成后,將定位的行顯示在tableView最下面

};

```

使表示圖定位到選中行

`- (void)scrollToNearestSelectedRowAtScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;`

這個函數與上面的非常相似,只是它是將表示圖定位到選中的行。

四、tableView操作刷新塊的應用

在介紹動畫塊之前,我們先看幾個函數:

插入分區

`- (void)insertSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;`

animation參數是一個枚舉,枚舉的動畫類型如下

```

typedef NS_ENUM(NSInteger, UITableViewRowAnimation) {

UITableViewRowAnimationFade,//淡入淡出

UITableViewRowAnimationRight,//從右滑入

UITableViewRowAnimationLeft,//從左滑入

UITableViewRowAnimationTop,//從上滑入

UITableViewRowAnimationBottom,//從下滑入

UITableViewRowAnimationNone,? //沒有動畫

UITableViewRowAnimationMiddle,

UITableViewRowAnimationAutomatic = 100? // 自動選擇合適的動畫

};

```

刪除分區

`- (void)deleteSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;`

重載一個分區

`- (void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation ;`

移動一個分區

`- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection;`

插入一些行

`- (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;`

刪除一些行

`- (void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;`

重載一些行

`- (void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;`

移動某行

`- (void)moveRowAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath;`

了解了上面幾個函數,我們來看什么是操作刷新塊:

當我們調用的上面的函數時,tableView會立刻調用代理方法進行刷新,如果其中我們所做的操作是刪除某行,而然數據源數組我們可能并沒有刷新,程序就會崩潰掉,原因是代理返回的信息和我們刪除后不符。

IOS為我們提供了下面兩個函數解決這個問題:

開始塊標志

`- (void)beginUpdates;`

結束快標志

`- (void)endUpdates;`

我們可以將我們要做的操作全部寫在這個塊中,那么,只有當程序執行到結束快標志后,才會調用代理刷新方法。代碼示例如下:

```

[tab beginUpdates];

[tab deleteRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:1 inSection:0]] withRowAnimation:UITableViewRowAnimationLeft];

[dataArray removeObjectAtIndex:1];

[tab endUpdates];

```

注意:不要在這個塊中調用reloadData這個方法,它會使動畫失效。

五、tableView的編輯操作

設置是否是編輯狀態(編輯狀態下的cell左邊會出現一個減號,點擊右邊會劃出刪除按鈕)

```

@property (nonatomic, getter=isEditing) BOOL editing;

- (void)setEditing:(BOOL)editing animated:(BOOL)animated;

```

設置cell是否可以被選中(默認為YES)

`@property (nonatomic) BOOL allowsSelection;`

設置cell編輯模式下是否可以被選中

`@property (nonatomic) BOOL allowsSelectionDuringEditing;`

設置是否支持多選

`@property (nonatomic) BOOL allowsMultipleSelection;`

設置編輯模式下是否支持多選

`@property (nonatomic) BOOL allowsMultipleSelectionDuringEditing;`

六、選中cell的相關操作

獲取選中cell的位置信息

`- (NSIndexPath *)indexPathForSelectedRow;`

獲取多選cell的位置信息

`- (NSArray *)indexPathsForSelectedRows;`

代碼手動選中與取消選中某行

```

- (void)selectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition;

- (void)deselectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated;

```

注意:這兩個方法將不會回調代理中的方法。

七、tableView附件的相關方法

設置索引欄最小顯示行數

`@property (nonatomic) NSInteger sectionIndexMinimumDisplayRowCount;`

設置索引欄字體顏色

`@property (nonatomic, retain) UIColor *sectionIndexColor;`

設置索引欄背景顏色

`@property (nonatomic, retain) UIColor *sectionIndexBackgroundColor;`

設置索引欄被選中時的顏色

`@property (nonatomic, retain) UIColor *sectionIndexTrackingBackgroundColor;`

設置分割線的風格

`@property (nonatomic) UITableViewCellSeparatorStyle separatorStyle;`

這個風格是一個枚舉,如下:

```

typedef NS_ENUM(NSInteger, UITableViewCellSeparatorStyle) {

UITableViewCellSeparatorStyleNone,//無線

UITableViewCellSeparatorStyleSingleLine,//有線

UITableViewCellSeparatorStyleSingleLineEtched

};

```

設置分割線顏色

`@property (nonatomic, retain) UIColor? ? ? ? ? *separatorColor;`

設置分割線毛玻璃效果(IOS8之后可用)

`@property (nonatomic, copy) UIVisualEffect? ? ? *separatorEffect;`

注意:這個屬性是IOS8之后新的。

設置tableView頭視圖

`@property (nonatomic, retain) UIView *tableHeaderView;`

設置tableView尾視圖

`@property (nonatomic, retain) UIView *tableFooterView;`

從復用池中取cell

`- (id)dequeueReusableCellWithIdentifier:(NSString *)identifier;`

獲取一個已注冊的cell

`- (id)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath`

從復用池獲取頭視圖或尾視圖

`- (id)dequeueReusableHeaderFooterViewWithIdentifier:(NSString *)identifier;`

通過xib文件注冊cell

- (void)registerNib:(UINib *)nib forCellReuseIdentifier:(NSString *)identifier;

通過OC類注冊cell


`- (void)registerClass:(Class)cellClass forCellReuseIdentifier:(NSString *)identifier`

上面兩個方法是IOS6之后的方法。

通過xib文件和OC類獲取注冊頭視圖和尾視圖

`- (void)registerNib:(UINib *)nib forHeaderFooterViewReuseIdentifier:(NSString *)identifier;`

`- (void)registerClass:(Class)aClass forHeaderFooterViewReuseIdentifier:(NSString *)`


來自:http://my.oschina.net/u/23408



80/blog/404605

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 228,786評論 6 534
  • 序言:濱河連續發生了三起死亡事件,死亡現場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機,發現死者居然都...
    沈念sama閱讀 98,656評論 3 419
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 176,697評論 0 379
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 63,098評論 1 314
  • 正文 為了忘掉前任,我火速辦了婚禮,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 71,855評論 6 410
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
    開封第一講書人閱讀 55,254評論 1 324
  • 那天,我揣著相機與錄音,去河邊找鬼。 笑死,一個胖子當著我的面吹牛,可吹牛的內容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,322評論 3 442
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 42,473評論 0 289
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當地人在樹林里發現了一具尸體,經...
    沈念sama閱讀 49,014評論 1 335
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 40,833評論 3 355
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發現自己被綠了。 大學時的朋友給我發了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 43,016評論 1 371
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,568評論 5 362
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質發生泄漏。R本人自食惡果不足惜,卻給世界環境...
    茶點故事閱讀 44,273評論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,680評論 0 26
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 35,946評論 1 288
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 51,730評論 3 393
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 48,006評論 2 374

推薦閱讀更多精彩內容