I found a similar approach (it uses a category as well) with gcamp's answer that helped me greatly here. In your case is as simple as this:
aView.topLeft = CGPointMake(100, 200);
but if you want for example to centre horizontal and to the left with another view you can simply:
aView.topLeft = anotherView.middleLeft;