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 will get the Optional("") because the optional value is not unwrapped and if you want to unwrap the optional value to get the string value, do
yourValue.unsafelyUnwrapped