I spent a couple of hours trying to position a UIView and eventually figured out that I needed to modify the views frame. So I added a \'setPosition\' method to the UIViewContro
Other way:
CGPoint position = CGPointMake(100,30); [self setFrame:(CGRect){.origin = position,.size = self.frame.size}];
This i save size parameters and change origin only.