I am looking to see if it is possible to get a string that has a variable in it from a plist.
So just like you would do normally.
let string1 = "a string variable"
print("this is \(string1)"
I wanted to just put in my plist file "this is \(string1)"
So how can you format it in a plist file or can you format it when you pull it out of the plist file into a String.
Or do I just need to rebuild the whole string after I pull it out of the plist file?
Thanks