2

在我的tableview中,我禁用了纵向模式下的默认滚动。但是当方向变为横向模式时,我启用了滚动,以便我可以查看表格的全部内容。但是,当滚动时,表格视图单元格之前和之后的空白区域是可见的。那么,谁能告诉我如何在横向模式下删除表格默认滚动视图中的这个空白?我尝试使用autoresizingmask,并尝试根据横向模式设置表格的内容大小。两者都没有工作,这是我到目前为止的代码。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{

    // Return YES for supported orientations

    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);

  }

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {

if((self.interfaceOrientation == UIDeviceOrientationLandscapeLeft) || (self.interfaceOrientation == UIDeviceOrientationLandscapeRight)){

        self.tableView.scrollEnabled = YES;

        self.tableView.sectionIndexMinimumDisplayRowCount =5;

       self.tableView.contentSize = CGSizeMake(480, 320);

        self.tableView.autoresizingMask = YES;

       //CGFloat cellHeight;}

    else if((self.interfaceOrientation == UIDeviceOrientationPortrait) || (self.interfaceOrientation == UIDeviceOrientationPortraitUpsideDown)){

        self.tableView.scrollEnabled = NO;

        }
  }
4

2 回答 2

6

在 didRotateFromInterfaceOrientation 方法中试试这个,

[self.tableView setBounces: NO];

它阻止滚动弹跳并删除空白。

于 2013-01-24T08:41:32.023 回答
1

将单元格分隔符设置为无并将背景颜色设置为 clearColor。确保将 scrollView 样式设置为默认值。

于 2013-01-24T08:39:43.523 回答