Friday, May 11, 2012

iPhone TextField


UITextField *textFiel = [[UITextField alloc] initWithFrame:CGRectMake(185, 49, 40, 25)];
textFiel.delegate = self;
textFiel.borderStyle = UITextBorderStyleRoundedRect;
textFiel.textColor = [UIColor blackColor]; //text color
textFiel.font = [UIFont boldSystemFontOfSize:13.0];  //font size

textFiel.backgroundColor = [UIColor clearColor]; //background color
 textFiel.keyboardType = UIKeyboardTypeNumbersAndPunctuation// type of the keyboard
  textFiel.returnKeyType = UIReturnKeyDone// type of the return key
            [ self.viewaddSubview: textFiel];
                        

No comments:

Post a Comment