Cat learns iOS Uitextfield right set picture, and Uitextfield full solution

Source: Internet
Author: User

Cat Share, must boutique

Original article. Welcome reprint. Reprint Please specify: Sanayu's Blog
Address: http://blog.csdn.net/u013357243

Effect:

A good way to encapsulate:

A small method of cat encapsulation, simple to share out, convenient later code copy assumes that there is better advice to tell me. Object-oriented is a big project, but we're on the road.

/** *  给UITextField设置右側的图片 * *  @param textField UITextField *  @param imageName 图片名称 */-(void)setRightViewWithTextField:(UITextField *)textField imageName:(NSString *)imageName{    UIImageView *rightView = [[UIImageView alloc]init];    rightView.image = [UIImage imageNamed:imageName];    rightView.size = CGSizeMake(4040);    rightView.contentMode = UIViewContentModeCenter;    textField.rightView = rightView;    textField.rightViewMode = UITextFieldViewModeAlways;}

Call:

- (void)viewDidLoad {    [super viewDidLoad];    [self setRightViewWithTextField:self.userNameTextField imageName:@"zc01"];    [self setRightViewWithTextField:self.passwordTextField imageName:@"zc02"];}

Cat learns iOS Uitextfield right set picture, and Uitextfield full solution

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.