美文网首页
设置cell的margin

设置cell的margin

作者: March_Cullen | 来源:发表于2017-03-02 20:57 被阅读0次
    #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