如何将图像设置在UISpliteViewcontroller的顶部

时间:2016-07-16 11:27:51

标签: ios swift ipad

我想在导航控制器栏上设置图像 添加代码后,它看起来像吼叫 enter image description here

1 个答案:

答案 0 :(得分:1)

您想要的是为UINavigationBar设置图片。为此,您需要以下代码:

override func viewWillAppear(animated: Bool) {
    super.viewWillAppear(animated)
    UINavigationBar.appearance().setBackgroundImage(UIImage(named: "imageBackground")!.resizableImageWithCapInsets(UIEdgeInsetsMake(0, 0, 0, 0), resizingMode: .Stretch), forBarMetrics: .Default)
}

它会将名为imageBackground的图片设置为UINavigationBar的背景。