gpt4 book ai didi

iphone - 如何在 iPhone 横向模式下删除 UITableview 滚动中的空白?

转载 作者:行者123 更新时间:2023-12-03 20:25:03 25 4
gpt4 key购买 nike

在我的tableview中,我禁用了纵向模式下的默认滚动。但是,当方向更改为横向模式时,我启用了滚动,以便我可以查看表格的全部内容。但是,滚动时,在表格 View 单元格之前和之后会看到空白。那么,谁能告诉我如何在横向模式下表格的默认 ScrollView 中删除这个空白?我尝试过使用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;

}
}

最佳答案

在 didRotateFromInterfaceOrientation 方法中尝试一下,

[self.tableView setBounces: NO];

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

关于iphone - 如何在 iPhone 横向模式下删除 UITableview 滚动中的空白?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14496842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com