I would like to position the text in a textfield more specifically.
My current code:
UITextField * textFieldIndustry = [[UITextField alloc] initWithFrame:CGRectMake(10, 10, 465, 68)];
textFieldIndustry.font = [UIFont systemFontOfSize:17.0];
textFieldIndustry.placeholder = @"Tap to..";
textFieldIndustry.textAlignment = NSTextAlignmentCenter;
This code:
textFieldIndustry.textAlignment = NSTextAlignmentCenter;
Centers the text but not exactly where I want it. How do I position using for example X & Y?