gpt4 book ai didi

objective-c - Storyboard中 iOS 对象的动态定位

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

我很难弄清楚如何在 DetailView Storyboard中动态定位对象。

对于初学者来说,该应用遵循传统的博客格式,其中 MasterView 是一个包含多个帖子的 UITableView(或 UICollectionView)。

当用户点击其中一个时,一个 segue 会导致 DetailView。

除 DetailView 中元素的定位外,一切都正确加载。

它是这样的:

enter image description here

顶部的 UIImageView 具有固定高度,因此它不会与 Post Text Label 重叠。

但是,Post Text Label 具有可变高度,因为一些帖子文本比其他文本长。这是由我正在使用的动态调整其大小的类别 (resizeToFit) 处理的。这一切都很好。

现在的问题是,随着 Post Text Label 垂直增长,我需要 View - Byline(绿色矩形)根据 Post Text 向下移动标签的垂直尺寸。而且我就是不能让它向下移动。

您可以看到我将所有 View - Byline 对象放在一个 View 中,因此它们通过仅针对 View - Byline 以编程方式更改位置来一起移动。

你知道我可以用什么方法来完成这个吗?非常感谢任何指点、教程或智慧。

DetailViewController.h

#import <UIKit/UIKit.h>

@interface DetailViewController : UIViewController {
IBOutlet UIImageView *postThumbView;
IBOutlet UILabel *postTextLabel;
IBOutlet UIImageView *postAuthorPictureView;
IBOutlet UILabel *postAuthorNameLabel;
IBOutlet UILabel *postTimestampLabel;
IBOutlet UIScrollView *scroller;
IBOutlet UIView *postBylineView;
}

@property (strong, nonatomic) id detailItem;

@end

DetailViewController.m

...
[postThumbView setImageWithURL:[NSURL URLWithString:postThumbUrl] placeholderImage:[UIImage imageNamed:@"default"]];

[postAuthorPictureView setImageWithURL:[NSURL URLWithString:authorPicture] placeholderImage:[UIImage imageNamed:@"default"]];

postTextLabel.text = postText;
postTextLabel.frame = CGRectMake(postTextLabel.frame.origin.x,
postThumbView.frame.origin.y + postThumbView.frame.size.height,
postTextLabel.frame.size.width,
postTextLabel.frame.size.height);
[postTextLabel resizeToFit];

postAuthorNameLabel.text = postAuthorName;
postTimestampLabel.text = postTimestamp;

最佳答案

如果你的目标是 ios6,你应该检查自动布局约束。如果没有,您是否可以使用您已经做过的相同方法来重新定位 postTextLabel。因此,对于 postByLine,将其定位在相对于帖子 textLabel 的底部。

postByLine.frame = CGRectMake(postByLine.frame.origin.x,
postTextLabel.frame.origin.y + postTextLabel.frame.size.height,
postByLine.frame.size.width,
postByLine.frame.size.height);

关于objective-c - Storyboard中 iOS 对象的动态定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12886597/

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