2013-11-14 103 views

回答

3

的原因是,iPad的分辨率是1024x768.Thus,图像的宽度应为768

+0

哦!男人你是对的!为什么我认为640分heheh :)现在已经修好了!谢谢! –

19

试试下面的伸展你的图像:

// load the background image navbar.png 
UIImage *imageNavBar = [UIImage imageNamed:@"navbar"]; 

// set the image as stretchable and set into navbar globally 
imageNavBar = [imageNavBar stretchableImageWithLeftCapWidth:0 topCapHeight:0]; 
[[UINavigationBar appearance] setBackgroundImage:imageNavBar forBarMetrics:UIBarMetricsDefault]; 
+0

如果背景图像具有透明部分,这也完全可行。即使您的背景没有超出导航栏宽度,您也可以看到它通过透明部件重复出现。伟大的解决方案... –

+0

你拯救我的一天 – mychar

0

一种方法是根据导航栏的宽度调整图像的大小。

let navBackgroundImage:UIImage! = UIImage(named: "top_header_iPhone") 
let navimg = navBackgroundImage.resizeImageWith(newSize: CGSize(width: UIScreen.main.bounds.size.width, height: navBackgroundImage.size.height)) 

UINavigationBar .appearance().setBackgroundImage(navimg, for:.default) 

UINavigationBar.appearance().titleTextAttributes = [ NSFontAttributeName: UIFont(name: "FightingSpiritturbo", size: 23)!] 

而对于调整图像的功能是:

extension UIImage{ 

    func resizeImageWith(newSize: CGSize) -> UIImage { 

     let horizontalRatio = newSize.width/size.width 
     let verticalRatio = newSize.height/size.height 

     let ratio = max(horizontalRatio, verticalRatio) 
     let newSize = CGSize(width: size.width * ratio, height: size.height * ratio) 
     UIGraphicsBeginImageContextWithOptions(newSize, true, 0) 
     draw(in: CGRect(origin: CGPoint(x: 0, y: 0), size: newSize)) 
     let newImage = UIGraphicsGetImageFromCurrentImageContext() 
     UIGraphicsEndImageContext() 
     return newImage! 
    } 
}