gpt4 book ai didi

iphone - UITableViewCell 的 accessoryView 中的多个 View

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:57:42 25 4
gpt4 key购买 nike

我正在尝试在 UITableViewCellaccessoryView 中叠加两个图像,如下所示:

UIView *accessoryView = [[UIView alloc] initWithFrame:cell.accessoryView.frame];

UIImageView *backgroundImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"CellBG.png"]];
UIImageView *tickImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Tick.png"]];

[accessoryView addSubview:backgroundImage];
[accessoryView addSubview:tickImage];

cell.accessoryView = accessoryView;

// release stuff

遗憾的是,这不起作用,两张图片位于屏幕上奇怪的地方......

有什么建议吗?

最佳答案

图像的边框需要设置为辅助 View 的边界。您可能还想尝试手动设置附件 View 框架。例如。 CGRectMake(0,0,20,20)

关于iphone - UITableViewCell 的 accessoryView 中的多个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4483941/

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