正如我的问题标题所说,我如何将CGPoint
转换为NSValues
以便可以在swift中将其存储为数组。
在objective-C中,我们可以这样做:
// CGPoint converted to NSValue
CGPoint point = CGPointMake(9, 9);
NSValue *pointObj = [NSValue valueWithCGPoint:point];
但有谁能告诉我,我怎么能这么快?
提前谢谢。
最佳答案
试试这样的:
let point = CGPointMake(9, 9)
var pointObj = NSValue(CGPoint: point)
关于ios - 如何快速转换NSValue中的CGPoint?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38423344/