gpt4 book ai didi

ios - 在 MFMailComposeViewController 中禁用 NavBar 半透明

转载 作者:行者123 更新时间:2023-11-29 12:40:01 25 4
gpt4 key购买 nike

我的第一个 View 嵌入在导航 Controller 中,我将其半透明属性设置为 NO。这给了我想要的纯绿色,状态栏是白色。但是,当我打开 MFMailComposeViewController 时,半透明属性设置回 YES,状态栏返回黑色。

如何移除半透明并将状态栏设置回白色?下面是我的代码。

- (void)viewDidLoad
{
[super viewDidLoad];

self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

self.navigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;
[self.navigationController.navigationBar setTranslucent:NO];
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 1) {
if (indexPath.row == 0) {
NSArray *toRecipents = [NSArray arrayWithObject:@"email goes here"];
MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc.navigationBar setTintColor:[UIColor whiteColor]];

[mc.navigationController.navigationBar setTranslucent:NO];

[mc setSubject:@"Inquiry"];
[mc setMessageBody:@"Hi, " isHTML:NO];
[mc setToRecipients:toRecipents];
[self presentViewController:mc animated:YES completion:NULL];
}
}
}

View1 View2

最佳答案

这对我有用:

[[UINavigationBar appearance] setTranslucent:NO];

关于ios - 在 MFMailComposeViewController 中禁用 NavBar 半透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25221947/

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