我有一个在纵向方向看起来很完美的图像(小按钮),但是我的整个应用程序都在横向右模式下运行,但是图像不会变成横向。
我想以编程方式进行
我试过:
NSString *pathToImg = [[NSBundle mainBundle] pathForResource:@"DetonatorSmall" ofType:@"png"];
UIImage *img = [UIImage imageWithContentsOfFile:pathToImg];
UIImageView *imgView = [[UIImageView alloc] initWithImage:img];
imgView.transform = CGAffineTransformMakeRotation(3.14159265/2);
[button setImage:imgView.image forState:UIControlStateNormal];
但图像仍然是纵向的。
有什么想法我能做什么?