I tried out the following code in playground
import UIKit
let label = UILabel()
let textView = UITextView()
let labelText = label.text // nil
let textViewText = textView.text // ""
If I Option click lableText
, the type is String?
.
If I Option click textViewText
, the type is String!
.
Why is the Label text an optional while the TextView text isn't?