gpt4 book ai didi

ios4 - 一个 UITableViewCell 中的两个按钮

转载 作者:行者123 更新时间:2023-12-02 08:54:33 26 4
gpt4 key购买 nike

如何将两个按钮放置在一个 UITableViewCell 中,就像 Apple App store 中的示例一样?

enter image description here

最佳答案

if ([cell.contentView viewWithTag:kButtonTag] == nil) {

UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn1.tag = kButtonTag;
UIButton *btn2 = btn1;
[btn1 setTitle:@"Tell a Friend" forState:UIControlStateNormal];
[btn2 setTitle:@"Report a Problem" forState:UIControlStateNormal];
btn1.frame = CGRectMake(0, 0,100,40);
btn2.frame = CGRectMake(120, 0,100, 40);
[cell.contentView addSubview:btn1];
[cell.contentView addSubview:btn2];
[cell setBackgroundColor:[UIColor clearColor]];

}

改变一下框架,它看起来应该很相似。

关于ios4 - 一个 UITableViewCell 中的两个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5979565/

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