标签:
//添加边框和提示
CGRect frameRect = CGRectMake(20, 90, self.window.frame.size.width-40, self.window.frame.size.height-180);
UIView *frameView = [[UIView alloc] initWithFrame:frameRect] ;
frameView.layer.borderWidth = 1;
frameView.layer.borderColor = [[UIColor whiteColor] CGColor];
//
cell.layer.cornerRadius = 12;
cell.layer.masksToBounds = YES;
cell.layer.borderWidth = 1;
cell.layer.borderColor = [[UIColor orangeColor] CGColor];
UIImageView *imagView = [[UIImageView alloc]init];
imagView.image = [UIImage imageNamed:@"xuanZhognImage"];
cell.backgroundView = imagView;
UILabel * lab = (UILabel *)[self.view viewWithTag:4022+indexPath.item];
lab.textColor = [UIColor orangeColor];
标签:
原文地址:http://www.cnblogs.com/gzz2016/p/5420718.html