本文介绍了将CGPoint转换为NSValue的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 CABasicAnimation.fromValue
我想将 CGPoint
转换为类,所以我使用 NSValue
valueWithPoint
但是在设备模式或模拟器中,一个不工作...
需要使用 NSMakePoint
或 CGPointMake
如果在设备或模拟器中。
In CABasicAnimation.fromValue
I want to convert a CGPoint
to a "class" so I used NSValue
valueWithPoint
but in device mode or simulator one is not working...need to use NSMakePoint
or CGPointMake
if in device or simulator.
推荐答案
有一个 UIKit
添加到 NSValue
,它定义了一个函数
There is a UIKit
addition to NSValue
that defines a function
+ (NSValue *)valueWithCGPoint:(CGPoint)point
参见
这篇关于将CGPoint转换为NSValue的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!