import UIKit
import CLTypingLabel
class ViewController: UIViewController {
@IBOutlet weak var titleLable: CLTypingLabel!
override func viewDidLoad() {
super.viewDidLoad()
titleLable.text = "Grow Up" (shows this error here :Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value)
}
}