gpt4 book ai didi

ios - uibuttontypedetaildisclosure 自定义图像

转载 作者:行者123 更新时间:2023-11-29 03:55:32 25 4
gpt4 key购买 nike

是否可以将 UIButtonTypeDetailDisclose 的图像从默认图像更改为更有趣的图像。但是,请注意,我要求的是按钮,而不是一种类型的 uibutton。

最佳答案

您必须更改单元格的accessoryView。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath

// code for initializing the cell..

UIImage *image = [UIImage imageNamed:@"interestingImage.png"];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
CGRect frame = CGRectMake(44.0, 44.0, image.size.width, image.size.height);
button.frame = frame;
[button setBackgroundImage:image forState:UIControlStateNormal];

[button addTarget:self action:@selector(accessoryButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
button.backgroundColor = [UIColor clearColor];
cell.accessoryView = button;

return cell;
}

关于ios - uibuttontypedetaildisclosure 自定义图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16544615/

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