--------------------------------------------------------------------------NSIndexPath-------------------------------------------------------------------------
1:初始化NSIndexPath (来自: Kid)
inSection 表示TableView 的分组的 第一组数据.
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
2:IndexPath 对比是否相同
[easyTableView.selectedIndexPath isEqual:indexPath]
1:注册事件:
[selectButton addTarget:self action:@selector(FE_selectAnnotation:withEvent:) forControlEvents:UIControlEventTouchUpInside];
注:@selector 可以获取 UIEvent 对象
NSIndexPath *indexPath = [tableView indexPathForRowAtPoint: [[[event touchesForView: btn] anyObject] locationInView:tableView]];
NSLog(@"%d",indexPath.row);
--------------------------------------------------------------------------NSIndexPath--------------------------------------------------------------------------
------------------------------------------------------------------------------------UITableView------------------------------------------------------------------------------------------
1:UITableView reLoadData 重载动态数据时的注意.
因为UITableView的Cell 是以重用的方式去显示数据,所以对Cell中动态数据 都需要设置. 否则可能会乱掉
2:去除选中某行Cell的状态
[tableView deselectRowAtIndexPath:indexPath animated:YES];
-(UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath
{
if ([indexPath row] == 0) {
return UITableViewCellAccessoryDisclosureIndicator;
}else {
return UITableViewCellAccessoryNone;
}
}
4:滑动删除按钮必须同时实现以下两个委托,才能生效
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"%d",indexPath.row);
}
5:在使用UITableView 的
tableHeaderView 时 丢进去的View需要先行设置好 Frame 不然会与后面生成Cell产生重叠的问题
6:UITableView 默认 只支持垂直 可以通过transForm 旋转达到支持水平形式的UITableView
1:网上开源Demo下载地址:
https://github.com/alekseyn/EasyTableView
2:经过我添砖加瓦的版本:
http://download.csdn.net/detail/ysy441088327/4675946
从iOS6以上开始 有了UITableView的亲兄弟 UICollectionView. 它带来更加强大的布局功能.
7:提前获取UITableView 的ContentSize
[flowCalendarTableView.tableView layoutIfNeeded];
NSLog(@"%@",NSStringFromCGSize(flowCalendarTableView.tableView.contentSize));
8: 去掉UITabelView 默认的 Cell间隔线条
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
9: 下拉刷新实现原理
CGFloat offset = MAX(scrollView.contentOffset.y * -1, 0);
offset = MIN(offset, 60);
scrollView.contentInset = UIEdgeInsetsMake(offset, 0.0f, 0.0f, 0.0f);
注:以上代码通用,无需过多考虑其原理.
//开启排序拖动编辑功能
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
NSLog(@"1");
}
- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
[UIView animateWithDuration:0.25 animations:^{
FEUIFriendGroupCell *cell = (FEUIFriendGroupCell *)[tableView cellForRowAtIndexPath:indexPath];
cell.friendGroupTitleTextField.Help_width -=60;
}];
}
- (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
[UIView animateWithDuration:0.25 animations:^{
FEUIFriendGroupCell *cell = (FEUIFriendGroupCell *)[tableView cellForRowAtIndexPath:indexPath];
cell.friendGroupTitleTextField.Help_width +=60;
}];
}
注:删除按钮出来时肯定有动画,但是消失时不一定有动画,原因是看你有没有实现 这个委托
accessoryTypeForRowWithIndexPath(搜索一下)
12:让UIPanGestureRecognizer 与 UItableView 的滑动显示 删除按钮 共存
[[tableView gestureRecognizers] enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
if ([NSStringFromClass([obj class]) isEqualToString:@"UISwipeGestureRecognizer"]) {
[self.bookContentContainerView.touchPanGesture requireGestureRecognizerToFail:obj];
}
}];
[multiFTPServerListTableView setAllowsMultipleSelectionDuringEditing:YES];
[multiFTPServerListTableView setEditing:YES];
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"%@",[tableView indexPathsForSelectedRows]);
NSArray *indexPathArray = [tableView indexPathsForSelectedRows];
[indexPathArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
if ([indexPath isEqual:obj] == NO) {
[tableView deselectRowAtIndexPath:obj animated:NO];
}
}];
}
_documentCollectionView.allowsMultipleSelection = NO;
_documentCollectionView.allowsSelection = NO;
_documentCollectionView.allowsSelection = YES;
------------------------------------------------------------------------------------UITableView------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------UITableViewCell---------------------------------------------------------------------------------------
1:设置TableViewCell 的背景颜色
UIView *backgrdView =[[UIView alloc] initWithFrame:self.frame];
backgrdView.backgroundColor=[UIColor colorWithRed:242.0/255 green:242.0/255 blue:242.0/255 alpha:1];
self.backgroundView= backgrdView;
[backgrdView release];
例如:Cell 高度 有100 但其实只有显示 50.
第一步是设置好UITableView 没列的高度,通过以下委托
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 50;
}
[self.layer setMasksToBounds:YES];
在Cell.h 头文件添加
静态取值方法:
+ (NSString *)reuseIdentifier;
//因为是继承关系 所以重写Cell 的 reuseIdentifier 以确定 其值.
-(NSString *)reuseIdentifier
{
return @"FEUIAddressBookCell";
}
//定义一个静态方法来取其值.
+(NSString *)reuseIdentifier
{
return @"FEUIAddressBookCell";
}
NSString *SectionsTableIdentifier = [FEUIAddressBookCell reuseIdentifier];
FEUIAddressBookCell *addressBookCell = (FEUIAddressBookCell *)[tableView dequeueReusableCellWithIdentifier:SectionsTableIdentifier];
if(addressBookCell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"FEUIAddressBookCell" owner:self options:nil];
addressBookCell = (FEUIAddressBookCell *)[nib objectAtIndex:0];
}
通过如上,性能问题已经解决.继续施展拳脚吧!!!
4:UITableView 在Grouped 模式下. 修改Cell 背景颜色的方式
cell.backgroundColor = [UIColor whiteColor];
6:设置Cell系统高亮选择样式风格
cell.selectionStyle = UITableViewCellSelectionStyleNone;
---------------------------------------------------------------------------------UITableViewCell---------------------------------------------------------------------------------------