How can I set the maximum amount of characters in a UITextField on the iPhone SDK when I load up a UIView?
UITextField
UIView
You can't do this directly - UITextField has no maxLength attribute, but you can set the UITextField's delegate, then use:
UITextField's
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string