Using quote marks inside strings caused problems before Swift 2.1, which meant that using string literals inside string interpolation was also difficult. This has been fixed in Swift 2.1, so this kind of code works fine now:
print("Hello, \(username ?? "Anonymous")")
This means it's also possible to read dictionary keys using string interpolation, like this:
print("Hello, \(user["name"]!)")
SPONSORED Spend less time managing in-app purchase infrastructure so you can focus on building your app. RevenueCat gives everything you need to easily implement, manage, and analyze in-app purchases and subscriptions without managing servers or writing backend code.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Download all Swift 2.1 changes as a playground Link to Swift 2.1 changes
Link copied to your pasteboard.