// // MaskActionSheetViewCell.m // GIGA // // Created by lianxiang on 2018/9/22. // Copyright © 2018年 com.giga.ios. All rights reserved. // #import "MaskActionSheetViewCell.h" @implementation MaskActionSheetViewCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } -(void)comfirmTitles:(NSIndexPath *)indepath { NSArray *titles = @[@"手机相册",@"系统相册",@"自拍"]; self.sheetTitle.text = titles[indepath.row]; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end