gpt4 book ai didi

ios - 在导航栏按钮中显示未读消息的数量

转载 作者:行者123 更新时间:2023-11-29 04:09:19 24 4
gpt4 key购买 nike

Navigation Bar Buttons

如何创建此功能,其中没有。未读消息显示在导航栏按钮的右上角?

最佳答案

这可能只是一个红色 View ,在 UINavigationBar 顶部添加了一个标签。例如,添加此代码,您会注意到导航栏上有类似的内容:

UILabel *redLabel = [[UILabel alloc] init];
[redLabel setBackgroundColor:[UIColor redColor]];
[redLabel setTextColor:[UIColor whiteColor]];
[redLabel setText:@"2"];
[redLabel setFont:[UIFont boldSystemFontOfSize:14.0]];
[redLabel setShadowColor:[UIColor blackColor]];
[redLabel setShadowOffset:CGSizeMake(0, 1)];
[redLabel setTextAlignment:NSTextAlignmentCenter];

[redLabel sizeToFit];
[redLabel setFrame:CGRectMake(120, 4, [redLabel frame].size.width + 6, [redLabel frame].size.height)];

[[[self navigationController] navigationBar] addSubview:redLabel];

关于ios - 在导航栏按钮中显示未读消息的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14669748/

24 4 0