Вы должны использовать метод CGRectMake.
код например:
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
if (orientation == UIDeviceOrientation Portrait) {
banner.frame = CGRectMake (0,0,768,70)
}
else {
banner.frame = CGRectMake (0,0,1024,70)
}