gpt4 book ai didi

ios - 如何使用 Parse 动态化单元格高度?

转载 作者:行者123 更新时间:2023-12-01 20:12:21 25 4
gpt4 key购买 nike

这是我的 Storyboard:enter image description here

我用来获取图像的方法是:

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

cell.mainImage.file = (PFFile *)object[@"image"];
[cell.mainImage loadInBackground];
}

行高设置为:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 501.0f;
}

我也想完美地填充图像,就像 instagram 一样。我不希望图像的顶部和底部都有条。

最佳答案

这对我有用

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewAutomaticDimension;
}

关于ios - 如何使用 Parse 动态化单元格高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37472681/

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