UIButton 图片的 平铺。

UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 19, 300, 41) title:NSLocalizedString(@"DoneButton", "") textColor:ButtonWhiteColor backgroundImageNames:nil target:self action:@selector(clickCodeButton)];

 

    UIEdgeInsets insets = UIEdgeInsetsMake(0, 8, 0, 8);

    UIImage *tempImage = [UIImage imageNamed:@"button_logout_bg"];

    UIImage *pressImage = [UIImage imageNamed:@"button_logout_bg_pres"];

    tempImage = [tempImage resizableImageWithCapInsets:insets];

    pressImage = [pressImage resizableImageWithCapInsets:insets];

 

    [button setBackgroundImage:tempImage forState:UIControlStateNormal];

    [button setBackgroundImage:pressImage forState:UIControlStateHighlighted];

    [footerView addSubview:button];

    [button release];

猜你喜欢

转载自zhangmingwei.iteye.com/blog/2211477