diff options
author | matthew <matthew> | 2008-11-12 16:02:35 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-11-12 16:02:35 +0000 |
commit | bb9701a0f630cad636b60788b30e9dc413faaf49 (patch) | |
tree | 060584598114e4bee4cf9cfcf9822b73cb625a37 /iphone/FixMyStreet/Classes/EditSubjectViewController.m | |
parent | acc26d4cb0075901e606473b046e917d3695758f (diff) |
First user feedback - no spelling correction on email address; better Report button; no move/scale photo; no "Your details" if none entered; default.png
Diffstat (limited to 'iphone/FixMyStreet/Classes/EditSubjectViewController.m')
-rw-r--r-- | iphone/FixMyStreet/Classes/EditSubjectViewController.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/iphone/FixMyStreet/Classes/EditSubjectViewController.m b/iphone/FixMyStreet/Classes/EditSubjectViewController.m index e533e0e86..752ebaa3b 100644 --- a/iphone/FixMyStreet/Classes/EditSubjectViewController.m +++ b/iphone/FixMyStreet/Classes/EditSubjectViewController.m @@ -30,6 +30,9 @@ self.title = b; if (a) cell.textField.text = a; cell.textField.keyboardType = d; + if (d == UIKeyboardTypeEmailAddress) { + cell.textField.autocorrectionType = UITextAutocorrectionTypeNo; + } cell.textField.autocapitalizationType = e; } |