我有一个UILabel.我需要以编程方式旋转它.
我有我的水平UILabel,例如frame:x:0,y:0,w:200,h:80.
[self setTransform:CGAffineTransformMakeRotation(M_PI_2 / 2)];
我可以看到包含的文本已旋转.但我想旋转整个框架:使用我的代码,UILabel继续拥有相同的框架.
解决方法
试试这个工作代码:
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0,100,200,80)]; //set background color to see if the frame is rotated [label setBackgroundColor:[UIColor redColor]]; [label setText:@"Text Here"]; label.transform=CGAffineTransformMakeRotation( ( 90 * M_PI ) / 180 ); [self.view addSubview:label];
希望能帮助到你