Skip to content

Instantly share code, notes, and snippets.

@ginrou
Last active December 15, 2015 07:09
Show Gist options
  • Save ginrou/5221332 to your computer and use it in GitHub Desktop.
Save ginrou/5221332 to your computer and use it in GitHub Desktop.
UILabelを回転
- (void)rotateLabel:(UILabel* )label
{
CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI_2); // 90度回転
// アニメーションなしで回転
label.transform = transform;
// 3.0[sec]かけて回転
[UIView animateWithDuration:1.0 animations:^{
label.transform = transform;
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment