gpt4 book ai didi

ios - 如何在 ios 中显示收件箱中的邮件数量

转载 作者:搜寻专家 更新时间:2023-11-01 05:31:26 25 4
gpt4 key购买 nike

我正在制作一个收件箱模块,我想在标签上显示消息计数。数据来自服务器。所以如果我们有 30 条消息,标签将显示 30 条消息。怎么办?推送通知的概念会用在这里还是别的什么地方?

最佳答案

通过编程方式或使用 IBOutlet 创建一个 UILablel 并在您要应用的位置设置 frame,最后设置为

#import <QuartzCore/QuartzCore.h>


UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(50, 50, 30, 30)]; //change the frame size as you need
label.layer.borderColor = [UIColor whiteColor].CGColor;
label.layer.borderWidth = 2.0;
label.layer.cornerRadius = label.bounds.size.height / 2;
label.TextAlignment=NSTextAlignmentCenter;
label.layer.masksToBounds = YES;
label.text=[NSString stringWithFormat:@"%d",yourarrayname.count]; // here add your message array name
label.textColor=[UIColor whiteColor];
label.backgroundColor=[UIColor redColor];
[self.view addSubview:label];

swift

let label: UILabel = UILabel(frame: CGRectMake(50, 50, 30, 30))//change the frame size as you need
label.layer.borderColor = UIColor.whiteColor().CGColor
label.layer.borderWidth = 2.0
label.layer.cornerRadius = label.bounds.size.height / 2
label.TextAlignment = .Center
label.layer.masksToBounds = true
label.text = "\(yourarrayname.count)" // here add your message array name
label.textColor = UIColor.whiteColor()
label.backgroundColor = UIColor.redColor()
self.view!.addSubview(label)

输出是

enter image description here

关于ios - 如何在 ios 中显示收件箱中的邮件数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26667684/

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