我将 UILabel 旋转 30 度。
在这种情况下,我想获得一个绑定大小。
有给定的功能吗?(函数、属性、方法等)
UILabel *uiLabel = [[[UILabel alloc] initWithFrame:CGRectMake(100, 100, 100, 20)] autorelease];
uiLabel.text = @"UILabel Text";
uiLabel.transform = CGAffineTransformMakeRotation((CGFloat) (-M_PI/4));
CGSize rotatedBound = uiLabel.?????