gpt4 book ai didi

ios - Xamarin iOS 导航栏图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:53:37 24 4
gpt4 key购买 nike

您好,我正在尝试在我的 iOS 应用程序的导航栏中包含一个 Logo 。 Logo 的大小为 160x40,我没有使用自定义导航栏。

我找到的解决方案是在右侧包含一个 40x40 的小按钮,但有没有办法在右侧包含一个较大的项目?

最佳答案

你可以添加一个UIImageViewUINavigationBar

var navBar = NavigationController.NavigationBar;
var imageView = new UIImageView(UIImage.FromBundle("sushiLogo.png"));
imageView.Frame = new CGRect((navBar.Bounds.Width / 5) * 3, 0, imageView.Image.CGImage.Width, navBar.Bounds.Height);
navBar.AddSubview(imageView);

enter image description here

注意:请记住保留对它的引用并在设备旋转时调整其Frame

关于ios - Xamarin iOS 导航栏图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47255068/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com