//
// UserInfoTableViewCell.m
// PhilisenseMultimediaMeeting
//
// Created by flx on 13-7-9.
// Copyright (c) 2013年 flx flx. All rights reserved.
//
#import "UserInfoTableViewCell.h"
#define BORLDER_BACKIMAGE @"cell_border.png" //边框背景图片
#define BORLDER_HEIGHT 1.0 //边框高度
@implementation UserInfoTableViewCell
@synthesize userNameLabel,ipLabel;
@synthesize topImageView,bottomImageView,iconImageView;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
//设置上下边框
UIImageView *topBorlder = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.frame.size.width, BORLDER_HEIGHT)];
topBorlder.image = [UIImage imageNamed:BORLDER_BACKIMAGE];
self.topImageView = topBorlder;
[self addSubview:topBorlder];
//设置下边框
UIImageView *bottomBorlder = [[UIImageView alloc] initWithFrame:CGRectMake(0, self.frame.origin.y + self.frame.size.height - 1, self.frame.size.width, 1)];
bottomBorlder.image = [UIImage imageNamed:BORLDER_BACKIMAGE];
self.bottomImageView = bottomBorlder;
[self addSubview:bottomBorlder];
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
上面设置下边框的时候错误,因为UITableViewCell 默认高度为44.00