i want to add an uiview for small size as a subview to existing view.
i have a uiviewcontroller pushed with a nib name which is the main view, i am trying to create an object of uiview and alloc it with dimension with the following code in the viewcontroller's viewdidload methoad
uiview *view = [[uiview alloc]];
but the ide is not suggesting the alloc on uiview and throwing an error if i forcefully type and run
please help me out with this