UITextField *searchBar = [[UITextField alloc] init];
searchBar.frame = CGRectMake(0, 0, 300, 30);
searchBar.font = [UIFont systemFontOfSize:15];
searchBar.placeholder = @"请输入搜索条件";
searchBar.background = [UIImage imageNamed:@"searchbar_textfield_background"];
UIImageView *searchIcon = [[UIImageView alloc] init];
searchIcon.image = [UIImage imageNamed:@"searchbar_textfield_search_icon"];
searchIcon.frame = CGRectMake(0, 0, 30, 30);
searchIcon.contentMode = UIViewContentModeCenter;
searchBar.leftView = searchIcon;
searchBar.leftViewMode = UITextFieldViewModeAlways;