gpt4 book ai didi

iphone - 以编程方式添加 tablview 的滚动禁用

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:08:50 24 4
gpt4 key购买 nike

我以编程方式将 tableview 添加到 scrollview,但它没有滚动。虽然我尝试使用 XIB 进行相同的操作。但它工作正常。

这是我的代码

CGRect 框架 = CGRectMake(30, 30.0f, 900, 300.0f);

eappTable = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]  style:UITableViewStylePlain];

eappTable.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;

eappTable.delegate = self;

eappTable.dataSource = self;

eappTable.scrollEnabled = YES;

eappTable.scrollsToTop = YES;

[eappTable reloadData];

[scrollView addSubview:eappTable];

最佳答案

eappTable = [[UITableView alloc] nitWithFrame:YourSize style:Table_Style]];
eappTable.delegate = self;
eappTable.dataSource = self;
eappTable.scrollEnabled = YES;
[scrollView addSubview:eappTable];

并设置self.scrollView.contentSize

关于iphone - 以编程方式添加 tablview 的滚动禁用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14499644/

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