码迷,mamicode.com
首页 > 其他好文 > 详细

2014-06-24 UITableView

时间:2014-06-25 11:50:53      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:des   style   tar   color   com   get   

1.针对cell上按钮(UIButton)的不响应SEL

  这个问题一般是由xib导致的,当从xib中load cell的时候,cell会自动在xib上加一层contentView,所以xib中的按钮等控件都被contentView挡住了,可以将contentView的backgroundColor设置为黑色,可以发现确实xib中load的view被挡住了。可以在cell的awakeFromNib中利用cell的bringSubviewToFront:方法将xib中的view都添到最上层,或者利用sendSubViewToBack: 将contentView移到最底层,也可将xib中的view添加到cell的contentView上,那么这个问题就解决了。

 

2.UITableViewDelegate 的一些方法简介(主要提供cell的选择,高亮,高度等操作)

 

(1)- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;

  这个方法一般用来展示一些cell刚出来时的动画(或者说刷新动画),可以根据不同的cell做一些不同的事情。

 

(2)- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section NS_AVAILABLE_IOS(6_0);

  同上,不过针对的是headerView。

 

(3)- (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section NS_AVAILABLE_IOS(6_0);

  同上,不过针对的是footerView。

 

 (4)- (void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath*)indexPath NS_AVAILABLE_IOS(6_0);

 

(5)- (void)tableView:(UITableView *)tableView didEndDisplayingHeaderView:(UIView *)view forSection:(NSInteger)section NS_AVAILABLE_IOS(6_0);

 

- (void)tableView:(UITableView *)tableView didEndDisplayingFooterView:(UIView *)view forSection:(NSInteger)section NS_AVAILABLE_IOS(6_0);

 

 

 

// Variable height support

 

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;

 

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;

 

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;

 

 

 

// Use the estimatedHeight methods to quickly calcuate guessed values which will allow for fast load times of the table.

 

// If these methods are implemented, the above -tableView:heightForXXX calls will be deferred until views are ready to be displayed, so more expensive logic can be placed there.

 

- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(7_0);

 

- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForHeaderInSection:(NSInteger)section NS_AVAILABLE_IOS(7_0);

 

- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section NS_AVAILABLE_IOS(7_0);

 

 

 

// Section header & footer information. Views are preferred over title should you decide to provide both

 

 

 

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;   // custom view for header. will be adjusted to default or specified header height

 

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;   // custom view for footer. will be adjusted to default or specified footer height

 

 

 

// Accessories (disclosures). 

 

 

 

- (UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath NS_DEPRECATED_IOS(2_0, 3_0);

 

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath;

 

 

 

// Selection

 

 

 

// -tableView:shouldHighlightRowAtIndexPath: is called when a touch comes down on a row. 

 

// Returning NO to that message halts the selection process and does not cause the currently selected row to lose its selected look while the touch is down.

 

- (BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(6_0);

 

- (void)tableView:(UITableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(6_0);

 

- (void)tableView:(UITableView *)tableView didUnhighlightRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(6_0);

 

 

 

// Called before the user changes the selection. Return a new indexPath, or nil, to change the proposed selection.

 

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath;

 

- (NSIndexPath *)tableView:(UITableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(3_0);

 

// Called after the user changes the selection.

 

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;

 

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(3_0);

 

 

 

// Editing

 

 

 

// Allows customization of the editingStyle for a particular cell located at ‘indexPath‘. If not implemented, all editable cells will have UITableViewCellEditingStyleDelete set for them when the table has editing property set to YES.

 

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;

返回TableView为editing时cell的editingStyle

 

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(3_0);

 

cell左滑出现的删除按钮,通过此函数,可以修改按钮的名称。 

 

// Controls whether the background is indented while editing.  If not implemented, the default is YES.  This is unrelated to the indentation level below.  This method only applies to grouped style table views.

 

- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;

当cell为editing状态的时候是否缩进,cell的缩进只是自动缩进contentView。

 

 

 

// The willBegin/didEnd methods are called whenever the ‘editing‘ property is automatically changed by the table (allowing insert/delete/move). This is done by a swipe activating a single row

 

- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;

 

- (void)tableView:(UITableView*)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath;

 

 

 

// Moving/reordering

 

 

 

// Allows customization of the target row for a particular row as it is being moved/reordered

 

- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath;               

 

该函数可以实现cell在section之间的移动,也可以通过此函数禁止cell在section之间移动 

 

需跟dataSource中的一些方法配合使用

// Indentation

 

 

 

- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath; // return ‘depth‘ of row for hierarchies

 

 对于不同indexPath的cell的不同缩进

 

// Copy/Paste.  All three methods must be implemented by the delegate.

 

 下面三个函数控制cell的一些文字编辑操作(包括拷贝,剪切,粘贴,选择,全选等操作)

 

- (BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(5_0);

 

特定cell是否显示菜单

- (BOOL)tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender NS_AVAILABLE_IOS(5_0);

 

action指的就是跟编辑有关的一些函数,如cut:,  copy:,  paste:, select:,  selectAll:,  delete:等函数

如果当action为cut: 时返回为NO,那么菜单上就没有剪切选项

- (void)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender NS_AVAILABLE_IOS(5_0);

对于特定的action做特定的响应,即当用户点击了菜单上的某个item时我们该如何响应

 

 

 

2014-06-24 UITableView,布布扣,bubuko.com

2014-06-24 UITableView

标签:des   style   tar   color   com   get   

原文地址:http://www.cnblogs.com/snailHL/p/3807175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!