Hmm the usual Swift upgrades rewrites required. My venerable path command no longer works saying "stringByAppendingPathCompnent is unavailable"
return NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.DocumentDirectory, NSSearchPathDomainMask.UserDomainMask, true)[0].stringByAppendingPathComponent(fileName)
If I use URLByAppendingComponent as instructed
return NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.DocumentDirectory, NSSearchPathDomainMask.UserDomainMask, true)[0].URLByAppendingPathComponent(fileName)
I am told that value of type String has no member URLByAppointmentPathComponent
How should I go about resolving this?