0
丸いコーナーのUITabBarを作成したいと思います。 UITabBarに角を丸める方法がありますか?それは第二の絵の形をとるだろう。UITabBarの丸みのついたコーナー
アプリはtableViewから始まります。ユーザーがトピックをタップすると、そのトピックはTabBarコントローラに送信されます。
----- -----編集
これは私AppDelegateです:ねえ、私は単純なプロパティを使用
func application(_application: UIApplication,
willFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) -> Bool{
let tabBarController = window?.rootViewController as! UITabBarController
let image = UIImage(named: "bar")
let tabBarImage = resize(image: image!, newWidth: tabBarController.view.frame.width)
tabBarController.tabBar.backgroundImage = tabBarImage
return true
}
func resize(image: UIImage, newWidth: CGFloat) -> UIImage {
UIGraphicsBeginImageContext(CGSize(width: newWidth, height: image.size.height))
image.drawInRect(CGRect(x: 0, y: 0, width: newWidth, height: image.size.height))
let newImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return newImage!
}
を助け
希望は「未解決識別子の使用:窓」と言う –
はまた、それはあなたがそのエラーを取得することshould't –
「UIiimageは 『引く』のないメンバーを持っていない」と言う、あなたはあなたが確かですコードを追加してください: funcアプリケーション(アプリケーション:UIApplication、didFinishLaunchingWithOptions launchOptions:[NSObject:AnyObject]?) - > Bool {} –