如何点击按钮修改文本的尺寸
目前正在开发iphone应用,需要实现通过点击一个按钮,修改标签中的文本尺寸,不知道这种功能应该怎么实现?应该是在ios5中开发的。谢谢指教~~
解决方案:
创建UILabel
[plain]
self.lbl=[[UILabel alloc] initWithFrame:CGRectMake(135, 290,200,35)];
self.lbl.backgroundColor=[UIColor clearColor];
NSString *str=[NSString stringWithFormat:@"%.f",[self.slider value]];
[self.lbl setFont:[UIFont fontWithName:@"Arial-BoldMT" size:16]];
self.lbl.text=str; www.zzzyk.com
[self.View addSubview:self.lbl];
点击UIButton时修改UILabel文本尺寸
[plain]
-(IBAction)ButtonPressed:(id)sender
{
[self.lbl setFont:[UIFont fontWithName:@"Arial-BoldMT" size:25]];
}
补充:移动开发 , IOS ,