gpt4 book ai didi

iphone - 表格 View 单元格中的 ImageView 框架

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

我已将图像添加到我的 iOS 应用程序的资源文件夹中。我想将该图像添加到我的 UITableView 的每个单元格中。我在 cellForRowAtIndexPath 中调整图像的大小,如下所示:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

cell.imageView.frame=CGRectMake(10, 27, 30, 30);
}

但是我的图像显示的大小类似于资源文件图像,但我希望它在上面提到的帧中显示。

我的研究给了我这个想法:

-(void)layoutsubviews
{
cell.imageView.frame=CGRectMake(10, 27, 30, 30);
}

我该如何使用它?

最佳答案

试试这个

-(void)layoutsubviews
{
self.imageView.frame=CGRectMake(10, 27, 30, 30);
}

我不确定编译器如何让您访问 -layoutSubviews 方法中的 cell。简而言之,您在此处设置的任何框架都将覆盖 UITableViewCell 的默认框架。

关于iphone - 表格 View 单元格中的 ImageView 框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15813650/

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