Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know how I can move inside the view of a Label created programmatically (i.e. move it to point (200,200). Here is the code for creating it.

UILabel *myLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 50, 50)];
[self.view addSubview:myLabel];
myLabel.text=@"Beppe";
myLabel.shadowColor=[UIColor grayColor];
myLabel.textColor=[UIColor blueColor];

Thanks a lot

share|improve this question

2 Answers

up vote 3 down vote accepted

This will move the labels center to (200,200), pretty standard stuff

myLabel.center=CGPointMake(200, 200)
share|improve this answer
thank you! ciao – Beppino66 Apr 18 '12 at 14:05
UILabel *myLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 50, 50)];
myLabel.text=@"Beppe";
myLabel.center=CGPointMake(200, 200);
myLabel.shadowColor=[UIColor grayColor];
myLabel.textColor=[UIColor blueColor];
[self.view addSubview:myLabel];
share|improve this answer
1  
great answer rockstar! – darshan Apr 24 '12 at 12:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.