gpt4 book ai didi

ios - 在 ios 7 中如何增加 UINavigationbar 的大小

转载 作者:行者123 更新时间:2023-11-29 10:52:59 25 4
gpt4 key购买 nike

使用 Storyboard创建导航栏。现在在 iOS 7 中,我面临着增加导航栏高度的挑战。

UINavigationBar *navBar = [[self navigationController] navigationBar];

[navBar setFrame:CGRectMake(0, 100, 1024, 200)];

最佳答案

UIFont *font = [UIFont fontWithName:@"fontName" size:YourFloatSize];
CGSize titleSize = [title sizeWithFont:font];
UILabel *titleLable = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, titleSize.width, titleSize.height)];
titleLable.text = title;
titleLable.textAlignment = NSTextAlignmentCenter;
titleLable.backgroundColor = [UIColor clearColor];
titleLable.textColor = [UIColor anyColorYouWant];

titleLable.font = font;
self.navigationItem.titleView = titleLable;

关于ios - 在 ios 7 中如何增加 UINavigationbar 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19652205/

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