0

我知道,这是一个愚蠢的愚蠢问题,但是在一天尝试了我所看到的所有搜索之后,我无法移动 UILabel,代码是这样的:

CGRect frame = self.label_total.frame;
frame.origin.x = 500; // new x coordinate
frame.origin.y = 500; // new y coordinate
self.label_total.frame = frame;

如果我将它放在 IBAction 中它可以工作,但我想将它插入 viewDidLoad,但它不起作用。请帮我。

4

1 回答 1

0

试试这个代码稍加修改。必须提供标签的出口。

CGRect frame1 = lbl_total.frame   ;
frame1.origin.x = 500; // new x coordinate
frame1.origin.y = 500; // new y coordinate
lbl_total.frame= frame1;
于 2013-05-23T12:55:54.090 回答