I want to create a custom CGPoint subclass to add some proprieties, but I get this error:
Inheritance from non-protocol, non-class type 'CGPoint'
I have no idea why this is not possible. My class is as simple as this:
import UIKit
class IYAttachPoint: CGPoint {
var holder: String = "No holder"
var unavailable: Bool = false
}
I've tried adding some libraries like CoreGraphics or QuartzCore without success. If there are already some questions or solutions to this problem, please point me in the right direction.