我正在尝试确定标签的位置,以便在其下方放置其他标签。
当我尝试输出特定标签上的数据时,我会在日志中获得0.000
作为输出。
知道为什么会这样吗?
...
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;
NSLog(@"%f", postTimestampLabel.frame.origin.y);