重写scrollView最上方的偏移量(默认向下偏移64)
if([selfrespondsToSelector:@selector(automaticallyAdjustsScrollViewInsets)])
{
//去掉系统默认的偏移
self.automaticallyAdjustsScrollViewInsets=NO;
//获取tabelView的偏移属性
UIEdgeInsetsinsets =self.tableView.contentInset;
//设置tableView的偏移属性值
insets.top=self.navigationController.navigationBar.bounds.size.height;
//设置属性
self.tableView.contentInset=insets;
self.tableView.scrollIndicatorInsets= insets;
}
self.tableView.frame=CGRectMake(0,20,self.view.bounds.size.width,self.view.bounds.size.height);
ScrollView被忘记的牛逼代理方法【谨记】
-(void)scrollViewWillEndDragging:(UIScrollView*)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inoutCGPoint*)targetContentOffset
{//用来判断,scrollView是上滑还是下滑
NSLog(@"yyyy == %f +++ xxxx == %f",velocity.y,velocity.x);
//记录ScrollView最上方的坐标
NSLog(@"targetContentOffsetyyyy == %f +++ targetContentOffsetxxxx == %f",targetContentOffset->y,targetContentOffset->x);
//根据值处理navigationBar
if(velocity.y>0)
{
self.navigationController.navigationBar.hidden=YES;
}
else
{
self.navigationController.navigationBar.hidden=NO;
}
设置tableViewcell不让点击等各个属性
DBEmptyTableViewCell* emtyCell = (DBEmptyTableViewCell*)[DBEmptyTableViewCellcellWithTableViewNib:tableView];
emtyCell.message.text=@"还没有动态哦";
//设置其不能被点击
emtyCell.userInteractionEnabled=NO;
//设置其没有点击效果
emtyCell.selectionStyle=UITableViewCellSelectionStyleNone;
returnemtyCell;
2、设置tableView没有线条
tableView.separatorStyle=UITableViewCellSeparatorStyleNone;
2、设置tableView某一个cell没有线条
btncell.separatorInset=UIEdgeInsetsMake(0,0,0, cell.bounds.size.width);
3、设置cell的线条显示完整
-(void)viewDidLayoutSubviews {
if([_tableViewOnerespondsToSelector:@selector(setSeparatorInset:)]) {
[_tableViewOnesetSeparatorInset:UIEdgeInsetsZero];
}
if([_tableViewOnerespondsToSelector:@selector(setLayoutMargins:)]) {
[_tableViewOnesetLayoutMargins:UIEdgeInsetsZero];
}
}
3、设置cell的线条显示完整方案2
cell?.separatorInset =UIEdgeInsetsZero
cell?.layoutMargins =UIEdgeInsetsZero
cell?.preservesSuperviewLayoutMargins =false
代理方法:当tableViewcell画出屏幕时,调用此代理方法
-(void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCell*)cell forRowAtIndexPath:(NSIndexPath*)indexPat{
if([cellrespondsToSelector:@selector(setLayoutMargins:)]) {
[cellsetLayoutMargins:UIEdgeInsetsZero];
}
if([cellrespondsToSelector:@selector(setSeparatorInset:)]){
[cellsetSeparatorInset:UIEdgeInsetsZero];
}}
判断tableView向上滑还是向下滑 笨方法方法
//加载scrollView和滑动都会执行此方法
- (void)scrollViewDidScroll:(UIScrollView*)scrollView
{
//******判断向上滑动还是向下滑动******
int_lastPosition =0;
intcurrentPostion = scrollView.contentOffset.y;
if(currentPostion - _lastPosition >50) {
_lastPosition = currentPostion;
[UIViewanimateWithDuration:0.2animations:^{
//NSLog(@"向上滑动");
self.menu.hidden=NO;
_headView.frame=CGRectMake(_headRect.origin.x,_headRect.origin.y-(_headRect.size.height-40),deviceWidth,_headRect.size.height);
_scrollView.frame=CGRectMake(0,_scrollViewRect.origin.y-(_headRect.size.height-40),deviceWidth,_scrollViewRect.size.height+200);
}];
}
elseif(_lastPosition - currentPostion >35)
{
_lastPosition = currentPostion;
[UIViewanimateWithDuration:0.2animations:^{
self.menu.hidden=YES;
// //NSLog(@"向下滑动");
_headView.frame=_headRect;
_scrollView.frame=_scrollViewRect;
}];}}}
处理tableView.tableFooterView添加控件问题点击无效等
//先定义一个View作为tableViewFootView【防止直接添加控件超出范围】
UIView* myView = [[UIViewalloc]initWithFrame:CGRectMake(0,0,self.view.bounds.size.width,80)];
myView.backgroundColor= [UIColoryellowColor];
_tableView.tableFooterView= myView;//让myView作为_tableView.tableFooterView
//定义一个控件,现在myView就作为_tableView.tableFooterView了,正常使用,不会在出现控件超出范围问题了
UIButton* btn = [UIButtonbuttonWithType:UIButtonTypeCustom];
btn.backgroundColor= [UIColorredColor];
btn.frame=CGRectMake(0,20,self.view.bounds.size.width,40);
[btnsetTitle:@"点击"forState:UIControlStateNormal];
[btnaddTarget:selfaction:@selector(btnClick)forControlEvents:UIControlEventTouchUpInside];
[myViewaddSubview:btn];
设置tableView局部刷新
//一个section刷新
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];
[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
//一个cell刷新
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
设置UITableView的滚动条颜色
self.tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
让UITableView的Cell不重用,解决方案
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = [NSString stringWithFormat:@"Cell%d%d",
[indexPath section], [indexPath row]];//以indexPath来唯一确定cell
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];//出列可重用的cell
if(cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
}
如何设置Plain 风格下UITableView的Section的HeaderView不在UITableview上浮动
CGFloat dummyViewHeight =40;
UIView *dummyView = [[UIView alloc] initWithFrame:CGRectMake(0,0, self.tableView.bounds.size.width, dummyViewHeight)];
self.tableView.tableHeaderView = dummyView;
self.tableView.contentInset = UIEdgeInsetsMake(-dummyViewHeight,0,0,0);
修改tableViewCell选中状态的颜色
cell.selectedBackgroundView= [[UIViewalloc] initWithFrame:cell.frame];cell.selectedBackgroundView.backgroundColor= [UIColorwhiteColor];
点击cell单元格的时候取消选中单元格
-(void)tableView:(UITableView*)tableViewdidSelectRowAtIndexPath:(NSIndexPath*)indexPath{ [tableView deselectRowAtIndexPath:indexPath animated:YES]; }
网友评论
我也这么写过,的确解决cell复用时控件位置错乱的问题,但这个方法本身似乎是不被提倡的。(而且据前辈说这个句式早年间已经被讨论烂了,结论是别这么写……)
这个不错