标签:data- apt color mat round import asp height cells
-(void)layoutSubviews{
[super layoutSubviews];
[self modifiDeleteBtn];
}
-(void)modifiDeleteBtn{
for (UIView *subView in self.subviews)
{
if ([subView isKindOfClass:NSClassFromString(@"UITableViewCellDeleteConfirmationView")]){
//确认订单
UIView *confirmationView = subView.subviews[3];
confirmationView.backgroundColor = [UIColor colorWithRed:164/255.0 green:225/255.0 blue:225/255.0 alpha:1.0];
for (UIView *view in confirmationView.subviews) {
UIImageView *deleteImage = [[UIImageView alloc] init];
deleteImage.contentMode = UIViewContentModeScaleAspectFit;
deleteImage.image = [UIImage imageNamed:@"confirmOrder"];
deleteImage.frame = CGRectMake(5, -10, 20, 20);
[view addSubview:deleteImage];
UIButton *oneBtn = [UIButton buttonWithType:UIButtonTypeCustom];
oneBtn.frame = CGRectMake(-25, 5, 80, 30);
[oneBtn setTitle:@"确认订单" forState:UIControlStateNormal];
oneBtn.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:10];
[view addSubview:oneBtn];
}
}
}
标签:data- apt color mat round import asp height cells
原文地址:http://www.cnblogs.com/linfeifei/p/7116004.html