| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- //
- // OptionCombinationPromotionDetailCell.m
- // IBOSS
- //
- // Created by 关宏厚 on 2020/9/14.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "OptionCombinationDetailCell.h"
- @implementation OptionCombinationDetailCell
- - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
- self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
-
- return self;
- }
- - (void) setCheckBackground: (BOOL) checked
- {
-
- if(!checked)
- {
-
- [_btnCheck setImage:[UIImage imageNamed:@"order_unchecked"] forState:UIControlStateNormal];
- }
- else
- {
- [_btnCheck setImage:[UIImage imageNamed:@"order_checked"] forState:UIControlStateNormal];
- }
- }
- -(void)setCombinationGoodsDetailCell:(InventoryListModel*)goodsModel
- {
- CGFloat heightLine = 1;
- CGFloat heightRow = 31;
- CGFloat lblx = 10;
- CGFloat lbly = 0;
- CGFloat lblwidth = 70;
- CGFloat lblheight = 31;
- CGFloat valuey = 0;
- CGFloat valueheight = 31;
- CGFloat topMargin=8;
-
- NSString *promotionTypeId= goodsModel.promotionTypeDetailId;
- UIView *vCode = [UIView new];
- vCode.frame=CGRectMake(0,0, Screen_Width,35);
- [self.contentView addSubview:vCode];
-
- _btnCheck = [UIButton buttonWithType:UIButtonTypeCustom];
- _btnCheck.frame= CGRectMake(lblx,8, 25,25);
- [_btnCheck addTarget:self action:@selector(btnGoCheck) forControlEvents:UIControlEventTouchUpInside];
- [vCode addSubview:_btnCheck];
-
- UILabel *lblCode = [UILabel new];
- lblCode.frame=CGRectMake(CGRectGetMaxX(_btnCheck.frame)+3, 5, Screen_Width-CGRectGetMaxX(_btnCheck.frame), valueheight);
- lblCode.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vCode addSubview:lblCode];
- lblCode.text = goodsModel.code;
-
- UIView *viewBackgroud = [UIView new];
- viewBackgroud.frame = CGRectMake(0, CGRectGetMaxY(vCode.frame)-1, Screen_Width, 1);
- viewBackgroud.backgroundColor = LineBackgroundColor;
- [vCode addSubview:viewBackgroud];
-
- UIView *vGoodsCate = [UIView new];
- vGoodsCate.frame=CGRectMake(0,CGRectGetMaxY(vCode.frame)+10, Screen_Width, heightRow);
-
-
- UILabel *lblTitleGoodsCateName = [UILabel new];
- lblTitleGoodsCateName.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleGoodsCateName.text = @"自选种类:";
- lblTitleGoodsCateName.textColor = [UIColor lightGrayColor];
- lblTitleGoodsCateName.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vGoodsCate addSubview:lblTitleGoodsCateName];
-
- UILabel *lblGoodsCateName = [UILabel new];
- lblGoodsCateName.frame=CGRectMake(CGRectGetMaxX(lblTitleGoodsCateName.frame), valuey, Screen_Width-CGRectGetMaxX(lblTitleGoodsCateName.frame), valueheight);
- lblGoodsCateName.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vGoodsCate addSubview:lblGoodsCateName];
- lblGoodsCateName.text = goodsModel.goodsCateName;
-
- [self.contentView addSubview:vGoodsCate];
-
- UIView *vCodeName = [UIView new];
- vCodeName.frame=CGRectMake(0,CGRectGetMaxY(vGoodsCate.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleCodeName = [UILabel new];
- lblTitleCodeName.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleCodeName.text = @"商品名称:";
- lblTitleCodeName.textColor = [UIColor lightGrayColor];
- lblTitleCodeName.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vCodeName addSubview:lblTitleCodeName];
-
- UILabel *lblCodeName = [UILabel new];
- lblCodeName.frame=CGRectMake(CGRectGetMaxX(lblTitleCodeName.frame), valuey, Screen_Width/2-CGRectGetMaxX(lblTitleCodeName.frame), valueheight);
- lblCodeName.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vCodeName addSubview:lblCodeName];
- lblCodeName.text = goodsModel.goodsName;
-
- [self.contentView addSubview:vCodeName];
-
- UIView *vVariety = [UIView new];
- vVariety.frame=CGRectMake(Screen_Width/2,CGRectGetMaxY(vCode.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleVariety = [UILabel new];
- lblTitleVariety.frame=CGRectMake(0, lbly, lblwidth, lblheight);
- lblTitleVariety.text = @"商品品种:";
- lblTitleVariety.textColor = [UIColor lightGrayColor];
- lblTitleVariety.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vVariety addSubview:lblTitleVariety];
- UILabel *lblVariety = [UILabel new];
- lblVariety.frame=CGRectMake(CGRectGetMaxX(lblTitleVariety.frame), valuey, Screen_Width/2-CGRectGetMaxX(lblTitleVariety.frame), valueheight);
- lblVariety.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vVariety addSubview:lblVariety];
- lblVariety.text =goodsModel.varietyName;
-
- [self.contentView addSubview:vVariety];
-
-
- UIView *vOnlyCode = [UIView new];
- vOnlyCode.frame=CGRectMake(0,CGRectGetMaxY(vCodeName.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleOnlyCode = [UILabel new];
- lblTitleOnlyCode.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleOnlyCode.text = @"唯一编码:";
- lblTitleOnlyCode.textColor = [UIColor lightGrayColor];
- lblTitleOnlyCode.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vOnlyCode addSubview:lblTitleOnlyCode];
-
- UILabel *lblOnlyCode = [UILabel new];
- lblOnlyCode.frame=CGRectMake(CGRectGetMaxX(lblTitleOnlyCode.frame), valuey, Screen_Width/2-CGRectGetMaxX(lblTitleOnlyCode.frame), valueheight);
- lblOnlyCode.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vOnlyCode addSubview:lblOnlyCode];
- lblOnlyCode.text =goodsModel.onlyCode;
-
- [self.contentView addSubview:vOnlyCode];
-
-
- UIView *vBrand = [UIView new];
- vBrand.frame=CGRectMake(Screen_Width/2,CGRectGetMaxY(vCodeName.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleBrand = [UILabel new];
- lblTitleBrand.frame=CGRectMake(0, lbly, lblwidth, lblheight);
- lblTitleBrand.text = @"商品品牌:";
- lblTitleBrand.textColor = [UIColor lightGrayColor];
- lblTitleBrand.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vBrand addSubview:lblTitleBrand];
- UILabel *lblBrand = [UILabel new];
- lblBrand.frame=CGRectMake(CGRectGetMaxX(lblTitleBrand.frame), valuey, Screen_Width/2-CGRectGetMaxX(lblTitleBrand.frame), valueheight);
- lblBrand.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vBrand addSubview:lblBrand];
- lblBrand.text = goodsModel.brandName;
-
- [self.contentView addSubview:vBrand];
-
- UIView *vGoodsQuantity = [UIView new];
- vGoodsQuantity.frame=CGRectMake(0,CGRectGetMaxY(vOnlyCode.frame)+10, Screen_Width, heightRow);
-
- UILabel *lblTitleGoodsQuantity = [UILabel new];
- lblTitleGoodsQuantity.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleGoodsQuantity.text = @"商品数量:";
- lblTitleGoodsQuantity.textColor = [UIColor redColor];
- lblTitleGoodsQuantity.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vGoodsQuantity addSubview:lblTitleGoodsQuantity];
-
- UILabel *lblGoodsQuantity = [UILabel new];
- lblGoodsQuantity.frame=CGRectMake(CGRectGetMaxX(lblTitleGoodsQuantity.frame), valuey, Screen_Width-CGRectGetMaxX(lblGoodsQuantity.frame), valueheight);
-
- lblGoodsQuantity.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vGoodsQuantity addSubview:lblGoodsQuantity];
- lblGoodsQuantity.text =goodsModel.salesQuantity;
-
- [self.contentView addSubview:vGoodsQuantity];
-
- UIView *vColorNumber = [UIView new];
- vColorNumber.frame=CGRectMake(0,CGRectGetMaxY(vGoodsQuantity.frame)+10, Screen_Width/3, heightRow);
-
- UILabel *lblTitleColorNumber = [UILabel new];
- lblTitleColorNumber.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleColorNumber.text = @"色号:";
- lblTitleColorNumber.textColor = [UIColor lightGrayColor];
- lblTitleColorNumber.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vColorNumber addSubview:lblTitleColorNumber];
- UILabel *lblColorNumber = [UILabel new];
- lblColorNumber.frame=CGRectMake(CGRectGetMaxX(lblTitleColorNumber.frame), valuey, Screen_Width/3-CGRectGetMaxX(lblTitleColorNumber.frame), valueheight);
- lblColorNumber.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vColorNumber addSubview:lblColorNumber];
- lblColorNumber.text = goodsModel.colorNumber;
-
- [self.contentView addSubview:vColorNumber];
-
-
- UIView *vSpecification = [UIView new];
- vSpecification.frame=CGRectMake(Screen_Width/3,CGRectGetMaxY(vGoodsQuantity.frame)+10, Screen_Width/3, heightRow);
-
- UILabel *lblTitleSpecification = [UILabel new];
- lblTitleSpecification.frame=CGRectMake(0, lbly, lblwidth, lblheight);
- lblTitleSpecification.text = @"规格:";
- lblTitleSpecification.textColor = [UIColor lightGrayColor];
- lblTitleSpecification.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vSpecification addSubview:lblTitleSpecification];
- UILabel *lblSpecification = [UILabel new];
- lblSpecification.frame=CGRectMake(CGRectGetMaxX(lblTitleSpecification.frame), valuey, Screen_Width/3-CGRectGetWidth(lblTitleSpecification.frame), valueheight);
- lblSpecification.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vSpecification addSubview:lblSpecification];
- lblSpecification.text = goodsModel.specification;
-
- [self.contentView addSubview:vSpecification];
-
- UIView *vGrade = [UIView new];
- vGrade.frame=CGRectMake(Screen_Width/3*2,CGRectGetMaxY(vGoodsQuantity.frame)+10, Screen_Width/3, heightRow);
-
- UILabel *lblTitleGrade = [UILabel new];
- lblTitleGrade.frame=CGRectMake(0, lbly, lblwidth, lblheight);
- lblTitleGrade.text = @"等级:";
- lblTitleGrade.textColor = [UIColor lightGrayColor];
- lblTitleGrade.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vGrade addSubview:lblTitleGrade];
- UILabel *lblGrade = [UILabel new];
- lblGrade.frame=CGRectMake(CGRectGetMaxX(lblTitleGrade.frame), valuey, Screen_Width/3-CGRectGetWidth(lblTitleGrade.frame), valueheight);
- lblGrade.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vGrade addSubview:lblGrade];
- lblGrade.text = goodsModel.gradeName;
-
- [self.contentView addSubview:vGrade];
-
- UIView *vGiftFlag = [UIView new];
- vGiftFlag.frame=CGRectMake(0,CGRectGetMaxY(vColorNumber.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleGiftFlag = [UILabel new];
- lblTitleGiftFlag.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleGiftFlag.text = @"赠品标识:";
- lblTitleGiftFlag.textColor = [UIColor lightGrayColor];
- lblTitleGiftFlag.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vGiftFlag addSubview:lblTitleGiftFlag];
-
- UILabel *lblGiftFlag = [UILabel new];
- lblGiftFlag.frame=CGRectMake(CGRectGetMaxX(lblTitleGiftFlag.frame), valuey, Screen_Width/2-CGRectGetMaxX(lblTitleGiftFlag.frame), valueheight);
- lblGiftFlag.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vGiftFlag addSubview:lblGiftFlag];
- BOOL giftFlag= goodsModel.giftFlag;
- NSString *giftFlagStr;
- if(giftFlag)
- {
- giftFlagStr=@"是";
- }
- else
- {
- giftFlagStr=@"否";
- }
- lblGiftFlag.text = giftFlagStr;
-
- [self.contentView addSubview:vGiftFlag];
-
-
- UIView *vWarehouseArea = [UIView new];
- vWarehouseArea.frame=CGRectMake(Screen_Width/2,CGRectGetMaxY(vColorNumber.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleWarehouseArea = [UILabel new];
- lblTitleWarehouseArea.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleWarehouseArea.text = @"库区:";
- lblTitleWarehouseArea.textColor = [UIColor lightGrayColor];
- lblTitleWarehouseArea.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vWarehouseArea addSubview:lblTitleWarehouseArea];
-
- UILabel *lblWarehouseArea = [UILabel new];
- lblWarehouseArea.frame=CGRectMake(CGRectGetMaxX(lblTitleWarehouseArea.frame), valuey, Screen_Width/2-CGRectGetWidth(lblTitleWarehouseArea.frame), valueheight);
- lblWarehouseArea.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vWarehouseArea addSubview:lblWarehouseArea];
- lblWarehouseArea.text = goodsModel.wareHouseName;
-
- [self.contentView addSubview:vWarehouseArea];
-
- UIView *vKind = [UIView new];
- vKind.frame=CGRectMake(0,CGRectGetMaxY(vGiftFlag.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleKind = [UILabel new];
- lblTitleKind.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleKind.text = @"种类:";
- lblTitleKind.textColor = [UIColor lightGrayColor];
- lblTitleKind.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vKind addSubview:lblTitleKind];
- UILabel *lblKind = [UILabel new];
- lblKind.frame=CGRectMake(CGRectGetMaxX(lblTitleKind.frame), valuey, Screen_Width/2-CGRectGetMaxX(lblTitleKind.frame), valueheight);
- lblKind.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vKind addSubview:lblKind];
- lblKind.text = goodsModel.kindName;
-
- [self.contentView addSubview:vKind];
-
- UIView *vSeries = [UIView new];
- vSeries.frame=CGRectMake(Screen_Width/2,CGRectGetMaxY(vGiftFlag.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleSeires = [UILabel new];
- lblTitleSeires.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleSeires.text = @"系列:";
- lblTitleSeires.textColor = [UIColor lightGrayColor];
- lblTitleSeires.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vSeries addSubview:lblTitleSeires];
- UILabel *lblSeries = [UILabel new];
- lblSeries.frame=CGRectMake(CGRectGetMaxX(lblTitleSeires.frame), valuey, Screen_Width/2-CGRectGetWidth(lblTitleSeires.frame), valueheight);
- lblSeries.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vSeries addSubview:lblSeries];
- lblSeries.text = goodsModel.seriesName;
-
- [self.contentView addSubview:vSeries];
-
- UIView *vPromotionPrice = [UIView new];
- vPromotionPrice.frame=CGRectMake(0,CGRectGetMaxY(vKind.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitlePromotionPrice = [UILabel new];
- lblTitlePromotionPrice.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitlePromotionPrice.text = @"促销价:";
- lblTitlePromotionPrice.textColor = [UIColor lightGrayColor];
- lblTitlePromotionPrice.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vPromotionPrice addSubview:lblTitlePromotionPrice];
-
- UILabel *lblPromotionPrice = [UILabel new];
- lblPromotionPrice.frame=CGRectMake(CGRectGetMaxX(lblTitlePromotionPrice.frame), valuey, Screen_Width/2-CGRectGetMaxX(lblTitlePromotionPrice.frame), valueheight);
- lblPromotionPrice.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vPromotionPrice addSubview:lblPromotionPrice];
- lblPromotionPrice.text = goodsModel.salesPrice;
-
- [self.contentView addSubview:vPromotionPrice];
-
- UIView *vMarkedPrice = [UIView new];
- vMarkedPrice.frame=CGRectMake(Screen_Width/2,CGRectGetMaxY(vKind.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleMarkedPrice= [UILabel new];
- lblTitleMarkedPrice.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleMarkedPrice.text = @"标价:";
- lblTitleMarkedPrice.textColor = [UIColor lightGrayColor];
- lblTitleMarkedPrice.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vMarkedPrice addSubview:lblTitleMarkedPrice];
-
- UILabel *lblMarkedPrice = [UILabel new];
- lblMarkedPrice.frame=CGRectMake(CGRectGetMaxX(lblTitleMarkedPrice.frame), valuey, Screen_Width/2-CGRectGetWidth(lblTitleMarkedPrice.frame), valueheight);
- lblMarkedPrice.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vMarkedPrice addSubview:lblMarkedPrice];
- lblMarkedPrice.text = goodsModel.markedPrice;
-
- [self.contentView addSubview:vMarkedPrice];
-
- UIView *vInventoryQuantity = [UIView new];
- vInventoryQuantity.frame=CGRectMake(0,CGRectGetMaxY(vPromotionPrice.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleInventoryQuantity = [UILabel new];
- lblTitleInventoryQuantity.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleInventoryQuantity.text = @"结存量:";
- lblTitleInventoryQuantity.textColor = [UIColor lightGrayColor];
- lblTitleInventoryQuantity.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vInventoryQuantity addSubview:lblTitleInventoryQuantity];
-
- UILabel *lblInventoryQuantity = [UILabel new];
- lblInventoryQuantity.frame=CGRectMake(CGRectGetMaxX(lblTitleInventoryQuantity.frame), valuey, Screen_Width/2-CGRectGetMaxX(lblTitleInventoryQuantity.frame), valueheight);
- lblInventoryQuantity.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vInventoryQuantity addSubview:lblInventoryQuantity];
- lblInventoryQuantity.text = goodsModel.inventoryQuantity;
-
- [self.contentView addSubview:vInventoryQuantity];
-
-
- UIView *vCanSalesQuantity = [UIView new];
- vCanSalesQuantity.frame=CGRectMake(Screen_Width/2,CGRectGetMaxY(vPromotionPrice.frame)+10, Screen_Width/2, heightRow);
-
- UILabel *lblTitleCanSalesQuantity= [UILabel new];
- lblTitleCanSalesQuantity.frame=CGRectMake(lblx, lbly, lblwidth, lblheight);
- lblTitleCanSalesQuantity.text = @"可售量:";
- lblTitleCanSalesQuantity.textColor = [UIColor lightGrayColor];
- lblTitleCanSalesQuantity.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vCanSalesQuantity addSubview:lblTitleCanSalesQuantity];
-
- UILabel *lblCanSalesQuantity= [UILabel new];
- lblCanSalesQuantity.frame=CGRectMake(CGRectGetMaxX(lblTitleCanSalesQuantity.frame), valuey, Screen_Width/2-CGRectGetWidth(lblTitleCanSalesQuantity.frame), valueheight);
- lblCanSalesQuantity.font = [UIFont systemFontOfSize: LabelAndTextFontOfSize];
- [vCanSalesQuantity addSubview:lblCanSalesQuantity];
- lblCanSalesQuantity.text = goodsModel.canSaleQuantity;
-
- [self.contentView addSubview:vCanSalesQuantity];
-
- UIView *bottomSeparator= [UIView new];
- bottomSeparator.frame=CGRectMake(0, CGRectGetMaxY(vInventoryQuantity.frame), Screen_Width, 1);
- bottomSeparator.backgroundColor = LineBackgroundColor;
- [self.contentView addSubview:bottomSeparator];
- _height=CGRectGetMaxY(bottomSeparator.frame);
-
- }
- -(void)btnGoCheck
- {
- if([self.delegate respondsToSelector:@selector(btnGoodsCombinationCheckPressed:)])
- {
- [self.delegate btnGoodsCombinationCheckPressed:self];
- }
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
-
- }
- @end
|