GiGaMaskTime/GIGA/Modules/Mask/View/MaskSharesViews/MaskActionSheetViewCell.m

33 lines
754 B
Objective-C

//
// 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 = @[@"手机相册",@"系统相册",@"自拍",@"取消"];
if (indepath.row == 3) {
self.sheetTitle.textColor = GIGARGB(165,165, 165, 1);
}
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