gpt4 book ai didi

ios - 在 UINavigationBar 的子类中设置 backButton 框架

转载 作者:行者123 更新时间:2023-11-29 04:42:07 31 4
gpt4 key购买 nike

对于使用 ARC 的 iOS 5.0 中的 iPad,我使用 UINavigationBar 的子类来制作具有更宽栏的自定义导航栏。此导航栏上的后退按钮需要垂直居中因为我使用的是更宽的后退按钮。现在,它在自然位置拥抱底部。我知道我可以使用每个 View Controller 的 viewDidLoad 方法上的 UINavigationItem 将其重新定位。

但是,是否可以在我创建的 UINavigationBar 的自定义子类中获取后退按钮,以便我可以使用layoutSubviews 将其垂直居中布局?

预先感谢您对此提供的帮助。

最佳答案

请尝试一下,我想这可能对你有帮助

// image for my back button
UIImage *backButtonImage= [UIImage imageNamed:@"Back.png"];
UIButton *leftBarButton = [UIButton buttonWithType: UIButtonTypeCustom];

// Setting the image for the back button
[leftBarButton setBackgroundImage: backButtonImage forState:UIControlStateNormal];
[leftBarButton addTarget: self action:@selector(backToMenu:) forControlEvents:UIControlEventTouchUpInside];

// setting the frame for the back button
leftBarButton.frame = CGRectMake(0, 0, 65, 32);

// setting the custom button to navigationbars back button
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView: leftBarButton];

关于ios - 在 UINavigationBar 的子类中设置 backButton 框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10240660/

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