I have an extension (of SCNVector3
) in Swift like this:
extension SCNVector3 {
// some functions extending SCNVector3 here....
}
I want to convert this extension to Objective-C. I know that the equivalent of extensions in ObjC is 'categories' but it doesn't seem possible to create a category on a struct like SCNVector3
.
https://developer.apple.com/documentation/scenekit/scnvector3
There is no equivalent to Swift structs in Objective C. You should implement the extension's methods as C functions. For example computing the length of a vector:
How you name the functions is entirely up to your taste. You call it as follows: