设置cell的margin
#import"LYTopicCell.h"
#import "LYTopic.h"
@implementation LYTopicCell
- (void)awakeFromNib {
self.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@""]];
}
- (void)setTopic:(LYTopic *)topic {
_topic = topic;
}
- (void)setFrame:(CGRect)frame {
static CGFloat margin = 10;
frame.origin.x = margin;
frame.origin.y -= margin;
frame.size.width -= 2 * margin;
frame.size.height -= margin;
[super setFrame:frame];
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
本文标题:设置cell的margin
本文链接:https://www.haomeiwen.com/subject/rnbkgttx.html
网友评论