gpt4 book ai didi

ios - UISwitch 详细文字在下方

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

Text not underneath

我希望能够将描述性文字放在标签下方。以下是我到目前为止的代码:

UISwitch *toggle = [[UISwitch alloc] init];
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"Cell"];
cell.textLabel.text = @"Remote Execution";
cell.detailTextLabel.text = @"Remote execution will permit registered devices to execute tests without manually starting them";
[cell addSubview:toggle];
cell.accessoryView = toggle;
[cell.detailTextLabel setAlpha:1.0];
[cell.detailTextLabel setTextColor:[UIColor redColor]];

最佳答案

使用UITableViewCellStyleSubtitle而不是UITableViewCellStyleValue1:

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"Cell"];

关于ios - UISwitch 详细文字在下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44442915/

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