我想在第6个tabbaritem上设置徽章值?怎么做。
我可以使用self.tabbaritem.badgevalue = @“”在第4个tabbaritem上设置标志值
但是,使用相同的原理,我无法将徽章设置为我的第六个Tabbaritem。请帮我???
以下代码包含我的徽章值。
CustomBadge *customBadge1=[[CustomBadge alloc]init];
customBadge1 = [CustomBadge customBadgeWithString:[self getBadges]
withStringColor:[UIColor whiteColor] withInsetColor:[UIColor redColor] withBadgeFrame:YES withBadgeFrameColor:[UIColor whiteColor]
withScale:1.0 withShining:YES];
[customBadge1 setFrame:CGRectMake(self.view.frame.size.width/2-customBadge1.frame.size.width/4,20, customBadge1.frame.size.width, customBadge1.frame.size.height)];
[self.view addSubview:customBadge1];
最佳答案
首先,选项卡栏中不应有第六个选项卡,因为它违反了Apple设置的设计规则。
因为这将导致“更多”按钮显示为第五个按钮。单击后,将重定向到表格视图,该视图将显示您无法将徽章设置为的“第五”和“第六”选项卡视图。
关于iphone - 如何为我的第6个标签栏项设置徽章值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12386383/