Make UIView in the center of the screen
iphone, objective-c
Solution
Check center property of UIView. You can set your view center to viewControllers root view for example:
yourView.center = self.view.center;
Problem
I need to add a simple loading animation on top a my view..and want it to be in the center of screen(visible aria)..can anybody point me to the right direction.? how to get the center of the window so that i can addSubview..?