Guest User

Untitled

a guest
Jun 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(100, 100, 100, 40)];
  4. textField.borderStyle = UITextBorderStyleLine;
  5. UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  6. label.text = @"mg";
  7. label.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.0];
  8. textField.rightViewMode = UITextFieldViewModeAlways;
  9. textField.rightView = label;
  10. [self.view addSubview:textField];
  11. [label release];
  12. [textField release];
  13. }
Add Comment
Please, Sign In to add comment