2010-11-22 28 views

cevap

0

CGRectMake yöntemini kullanmalısınız.

kod örn:

UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation]; 

if (orientation == UIDeviceOrientation Portrait) { 

banner.frame = CGRectMake (0,0,768,70) 

} 

else { 

banner.frame = CGRectMake (0,0,1024,70) 

} 
İlgili konular