gpt4 book ai didi

ios - 我有自定义的 tableview 单元格,我在 tableview 的底部设置了一个整体按钮

转载 作者:行者123 更新时间:2023-11-29 00:45:15 25 4
gpt4 key购买 nike

enter image description here我有自定义的 tableview 单元格,我想在 tableview 的底部设置一个可点击的整体按钮

UIButton*yourBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[yourBtn setImage:[UIImage imageNamed:@"wishlist"] forState:UIControlStateNormal];
//[yourBtn setTitle:@"+" forState:UIControlStateNormal];
yourBtn.frame = CGRectMake(0, self.view.bounds.size.height -100, buttonwidth, buttonheight);
yourBtn.center = CGPointMake(self.view.center.x, self.view.bounds.size.height -100);
[yourBtn addTarget:self action:@selector(addButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:yourBtn];

如果我滚动 tableview 按钮也从上到下滚动。我想在滚动 tableview 时将该按钮设置为常量

如何获得这样的tableview按钮

最佳答案

您需要将tableviewbutton分开。

代码如下:

UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain];
tableView.dataSource = self;
tableView.backgroundColor = [UIColor lightGrayColor];
[self.view addSubview:tableView];
UIButton *yourButton = [UIButton buttonWithType:UIButtonTypeCustom];
yourButton.frame = CGRectMake(CGRectGetWidth(self.view.frame) - 70,
CGRectGetHeight(self.view.frame) - 70,
50,
50);
[yourButton setImage:[UIImage imageNamed:@"Untitled-1"] forState:UIControlStateNormal];
[self.view addSubview:yourButton];

希望以上信息对您有所帮助。

关于ios - 我有自定义的 tableview 单元格,我在 tableview 的底部设置了一个整体按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38693919/

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