ios – 将removeBar border转换为swift

ios – 将removeBar border转换为swift,第1张

概述我正试图在 swift中删除navigationBar边框.这是通过在 objective-c中使用以下代码来完成的: [[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];[[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init 我正试图在 swift中删除navigationbar边框.这是通过在 objective-c中使用以下代码来完成的:

[[UINavigationbar appearance] setShadowImage:[[UIImage alloc] init]];[[UINavigationbar appearance] setBackgroundImage:[[UIImage alloc] init] forbarMetrics:UIbarMetricsDefault]

怎么能在swift中完成?

我试过这个,但没有工作:

UINavigationbar.appearance().shadowImage = UIImage(named: "")UINavigationbar.appearance().setBackgroundImage(UIImage(named: ""),forbarMetrics: UIbarMetrics.Default)
解决方法 试试这个:

UINavigationbar.appearance().shadowImage = UIImage()UINavigationbar.appearance().setBackgroundImage(UIImage(),forbarMetrics: UIbarMetrics.Default)
总结

以上是内存溢出为你收集整理的ios – 将removeBar border转换为swift全部内容,希望文章能够帮你解决ios – 将removeBar border转换为swift所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1004448.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存