I am accessing the size of the frame of view from storyboard. Below is my code for accessing frame property from storyboard.
SmallView *smallView = [self.storybo
Gettings a frame of a viewController's view which might not even displayed is not a good practice. The point where you can assume, everything is in place is the viewControllers's ViewDidLoad method.
Uncheck the "Resize View From Nib" box in the inspector. That should give you the correct size for a freeform view controller.