I was trying to open mail on UILabel click event. But its throws fatal error:
unexpectedly found nil while unwrapping an Optional value.
Code used:
func sendMail(sender:UITapGestureRecognizer){
print("mail::" + self.lblMail.text!) // joe@nts.com is here
let url = NSURL(string: "mailto:\(self.lblMail.text)")! //url is nil when debugged
UIApplication.sharedApplication().openURL(url)
}