我有 10 个 UIButtons 和单个 UILabel。所有这些 UIButtons 都有一些文本作为标题。现在我想要当我单击一些 UIButton 时,它的标题分配给 UILabel,当我们单击第二个 UIButton 时,它的标题也分配给 UIlabel 并附加它的文本它已经拥有的 UILabel。这是我的代码。
- (void)aMethod:(id)sender {
UIButton *button = (UIButton *)sender;
NSString *get = (NSString *)[[button titleLabel] text];
NSLog(@"my uibutton test= %@",get);
mainlabel.text=get;
}
请任何人指导我如何在单个 UILabel 中附加所有这些 UIButtons 标题。