When I try to get my keyChain value, it return a string containing:
Optional(\"[thing in the KeyChain]\")
so, I tried to remove \"Optiona
You actually don't even need to do anything. The "Optional" string isn't in the actual data. That is just something Swift seems to place on the output on the console when it is an optional value that isn't unwrapped. IE The data itself doesn't contain the string Optional.
Still, good to unwrap it if you know it contains data.