gpt4 book ai didi

iphone - 在 UITableView 的顶部和底部添加按钮

转载 作者:行者123 更新时间:2023-12-01 17:42:41 25 4
gpt4 key购买 nike

在我的回合制游戏中,我有一个屏幕显示我目前参加的所有比赛。我为此使用了一个包含 3 个部分的表格 View 。

现在我想在显示的游戏上方添加一个“开始新游戏”按钮。在显示游戏的下方,我想要一些按钮,例如“商店”等。我可以放置它们,但它们不会滚动,所以我需要将它们放在 tableview 中以便它们滚动。

最好的方法是什么?

最佳答案

UIView *headerContainer = [[UIView alloc]initWithFrame:CGRectMake(X, X, X, X)];
UIButton *btnHeader = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[headerContainer addSubview:btnHeader];


UIView *footerContainer = [[UIView alloc]initWithFrame:CGRectMake(X, X, X, X)];
UIButton *btnFooter = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[footerContainer addSubview:btnFooter];


tblView.tableHeaderView = headerContainer;
tblView.tableFooterView = footerContainer;

关于iphone - 在 UITableView 的顶部和底部添加按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14350263/

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