gpt4 book ai didi

ios - UITableView 不显示滚动

转载 作者:行者123 更新时间:2023-11-29 02:21:21 26 4
gpt4 key购买 nike

我在 View 出现事件中填充 TableView ,并调用 TableView 的 reloadData。表格填满了一些行,但没有显示更多行的滚动。我是 iOS 开发的新手。有什么问题吗?

最佳答案

试试下面的代码

- (void)viewDidLoad {
//write the code to fetch and store the data in array(table view data source)
[self.tableView setFrame:self.view.bounds];//the frame should not exceed self.view.bounds, try `NSLog(@"View Bounds %@",NSStringFromCGRect(self.view.bounds));` to know view bounds
[self.tableView setScrollEnabled:YES];
[self.tableView setShowsHorizontalScrollIndicator:YES];
[self.tableView setShowsVerticalScrollIndicator:YES];
dispatch_async(dispatch_get_main_queue(), ^{
[self.tableView reloadData];
});
}

self.tableView 替换为您的表名。

希望这对您有所帮助。

关于ios - UITableView 不显示滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28092494/

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