Я решил свою проблему с левым обзором UITextField.Для вашей информации
UILabel *countryCodeLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 15, theCell.textfield.frame.size.height)];
countryCodeLabel.text = @" 0090";
[countryCodeLabel sizeToFit];
theCell.textfield.leftView = countryCodeLabel;
theCell.textfield.leftViewMode = UITextFieldViewModeAlways;