fixed deprecation warning for NSString UIKit Constants with iOS6 deployment target

This commit is contained in:
Stefan Haubold
2013-02-20 14:03:42 +01:00
parent bafd9a0fff
commit eefa48846a
6 changed files with 27 additions and 10 deletions

View File

@@ -230,7 +230,7 @@
textField.backgroundColor = [UIColor whiteColor];
textField.autocorrectionType = UITextAutocorrectionTypeNo;
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
textField.textAlignment = UITextAlignmentLeft;
textField.textAlignment = kBITTextLabelAlignmentLeft;
textField.delegate = self;
textField.tag = indexPath.row;