let username = self.user?.getProperty("username") as? String
self.navigationItem.title = "@\(username)"
What I want to happen there is for it to print on the screen that users username with an @ in front of it like @user2
What it is printing instead is @Optional("user2")
How do I make this stop that? Ha