Whenever I try to take the input from a text field, I get this error. Could anyone please help?
2017-05-08 17:45:04.962124 MyPhotos[32987:246251] [MC] System group container for systemgroup.com.apple.configurationprofiles path is /Users/local/Library/Developer/CoreSimulator/Devices/05F02AB6-BDEA-43EA-9E7E-D547D3A0CC1A/data/Containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles
2017-05-08 17:45:04.962486 MyPhotos[32987:246251] [MC] Reading from private effective user settings.
Code:
class AddPhotoController: UIViewController,UITextFieldDelegate {
@IBOutlet weak var photoTitle: UITextField!
@IBOutlet weak var photoTags: UITextField!
@IBOutlet weak var photoURL: UITextField!
@IBOutlet weak var photoPreview: UIImageView!
@IBAction func savePhoto(sender: AnyObject) {
let title: String = photoTitle.text!
}
}