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,但它不工作。請幫幫我。