ifish/Ifish/UMCommunity/UMCommunitySDK/UMCommunityUI/Common/Edit/UMComLocationTableViewCell.m

47 lines
1.3 KiB
Objective-C

//
// UMComLocationTableViewCell.m
// UMCommunity
//
// Created by Gavin Ye on 12/18/14.
// Copyright (c) 2014 Umeng. All rights reserved.
//
#import "UMComLocationTableViewCell.h"
#import "UMComResouceDefines.h"
#import <UMComDataStorage/UMComLocation.h>
#import <UMComFoundation/UMComKit+Color.h>
@implementation UMComLocationTableViewCell
- (void)awakeFromNib {
self.locationName.font = UMComFontNotoSansLightWithSafeSize(17);
self.locationDetail.font = UMComFontNotoSansLightWithSafeSize(15);
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
//
// 自绘分割线
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
CGContextFillRect(context, rect);
CGContextSetStrokeColorWithColor(context, UMComTableViewSeparatorColor.CGColor);
CGContextStrokeRect(context, CGRectMake(0, rect.size.height - TableViewCellSpace, rect.size.width, TableViewCellSpace));
}
- (void)reloadFromLocationModel:(UMComLocation *)locationModel
{
[self.locationName setText:locationModel.name];
[self.locationDetail setText:locationModel.address];
}
@end