标签位置未正确返回

时间:2012-11-22 21:59:25

标签: iphone objective-c ios ios5

我正在尝试确定标签的位置,以便在其下方放置其他标签。

当我尝试输出特定标签上的数据时,我会在日志中获得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);

0 个答案:

没有答案