In swift, this code generate a random uuid...
let uuid = UUID().uuidString
I have it so when I click on a button, it gets the uuid and prints it to the console, however, when I click the button once more, I get a different uuid. I want to be able to save the UUID that I get on the first click of the button to a string... Is that possible? Thanks!