NSLog(@"%@",appDelegate.strSlctdCntry);
btnSlctCurrency.titleLabel.text = [NSString stringWithFormat:@"%@",appDelegate.strSlctdCntry];
btnSlctCurrency.titleLabel.textAlignment = UITextAlignmentCenter;
以上代码为NSLog(@"%@",appDelegate.strSlctdCntry);
索引名称来自UITablView
是正常但按钮名称第一次没有更改。它只是第二次改变。
为什么会这样?
答案 0 :(得分:3)
使用: 用于设置按钮标题:
[btnSlctCurrency setTitle:[NSString stringWithFormat:@"%@",appDelegate.strSlctdCntry] forState:UIControlStateNormal];
对齐
[btnSlctCurrency setContentHorizontalAlignment:UIControlContentHorizontalAlignmentLeft];