I have design a view in xib file with 3.5 size. When I run on iphone 5 resolution it show a space in the bottom.
Is there any way to support one xib into both resolution.
Thanks.
EDIT
if( IS_IPHONE_5 )
{
_helpButton = [[UIButton alloc] initWithFrame:self.view.bounds];
_LogoImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
[_helpButton setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
[_LogoImage setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
CGRect frameRect = _helpButton.frame;
frameRect.origin.y += 300;
_helpButton.frame = frameRect;
}