I\'m using a UITextField to show results of a calculation but I don\'t want the keyboard to appear when the user taps on the UIText
Its quite simple to do with UITextField. Use this code in viewDidLoad()
viewDidLoad()
self.txtresult.inputView = UIView() self.txtresult.inputAccessoryView = UIView()