如何将值从 uitextfield 传递到 CGAffineTransformMakeRotation

发布于 2024-09-08 04:03:39 字数 155 浏览 0 评论 0原文

CGAffineTransformMakeRotation(90);

如何将 mytextfield.text 发送到 CGAffineTransformMakeRotation 像:CGAffineTransformMakeRotation(mytextfield.text);

CGAffineTransformMakeRotation(90);

How can I send mytextfield.text to CGAffineTransformMakeRotation
like : CGAffineTransformMakeRotation(mytextfield.text);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生来就爱笑 2024-09-15 04:03:39

您只需要将字符串转换为数字即可。

CGAffineTransformMakeRotation([mytextfield.text floatValue]);

You just need to convert the string into a number.

CGAffineTransformMakeRotation([mytextfield.text floatValue]);
阿楠 2024-09-15 04:03:39
#define DEGREES_TO_RADIANS(__ANGLE__) ((__ANGLE__) / 180.0 * M_PI)

-(IBAction)RotateButtonPressed:(id)sender;
{   
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:1.5];
    arrow.center = CGPointMake(151.0,80.0);
arrow.transform = CGAffineTransformMakeRotation(DEGREES_TO_RADIANS([degrees.text floatValue]));
    [UIView commitAnimations];


}

这就是我如何将 CGAffineTransformMakeRotation 从弧度转换为度数

供任何人将来参考

#define DEGREES_TO_RADIANS(__ANGLE__) ((__ANGLE__) / 180.0 * M_PI)

-(IBAction)RotateButtonPressed:(id)sender;
{   
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:1.5];
    arrow.center = CGPointMake(151.0,80.0);
arrow.transform = CGAffineTransformMakeRotation(DEGREES_TO_RADIANS([degrees.text floatValue]));
    [UIView commitAnimations];


}

Thats how I did convert from radians to degrees for CGAffineTransformMakeRotation

For anyones future reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文