2012-11-13 47 views
0

我知道,這是一個愚蠢的愚蠢的問題,但有一天亂投醫後,我已經看到了搜索,我uncapable移動一個UILabel,代碼,這是一個:不能移動的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,但它不工作。請幫幫我。

回答

0

試試這段代碼修改得很少。 必須提供標籤出口。

CGRect frame1 = lbl_total.frame ; 
frame1.origin.x = 500; // new x coordinate 
frame1.origin.y = 500; // new y coordinate 
lbl_total.frame= frame1;