iosswiftcgpointnsvalue

How to convert CGPoint in NSValue in swift?


As my question title says how can I convert CGPoint into NSValues so I can store then Into array In swift.

In objective-C we can do it like this:

  // CGPoint converted to NSValue
     CGPoint point = CGPointMake(9, 9);
     NSValue *pointObj = [NSValue valueWithCGPoint:point];

But can anybody tell me that how can I do this in swift?

Thanks In Advance.


Solution

  • Try something like that:

    let point = CGPointMake(9, 9)
    var pointObj = NSValue(CGPoint: point)