KWMSelectCurrencyCell.m 627 Bytes
Newer Older
lee committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
//
//  KWMSelectCurrencyCell.m
//  iCemarose
//
//  Created by lee on 2017/6/16.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import "KWMSelectCurrencyCell.h"

@interface KWMSelectCurrencyCell ()

@property (nonatomic, weak) IBOutlet UILabel *title;

@end

@implementation KWMSelectCurrencyCell

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

-(void)fillData:(NSString *)name {
    self.title.text = name;
}

@end