我想在我的第 6 个 tabbaritem 上设置徽章值??怎么做。我可以使用 self.tabbaritem.badgevalue=@"" 在第 4 个 tabbaritem 上设置徽章值
但是使用相同的原理,我无法将徽章设置为我的第 6 个 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];