Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change position (x,y coordinate) of a view dynamically

I have an application which loads a view in it. I want to position the loaded view in 450pt of y cordinate. How to do that.

Regards Ranjan

like image 852
TechBee Avatar asked Jul 19 '10 09:07

TechBee


1 Answers

Look at the documentation for UIView and in particular the properties frame, bounds and center

I assume that you are adding a subview so you want it in the coordinate that is relative to the parent view. Then you use frame.

CGRect r = [subView frame];
r.origin.y = 450.0f;
[subView setFrame:r];

Something like that.

like image 139
willcodejavaforfood Avatar answered Sep 28 '22 08:09

willcodejavaforfood