//
// contHeadBannerCell.m
// ThePaperBase
//
// Created by scar1900 on 15/8/20.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "contHeadBannerCell.h"
@implementation contHeadBannerCell
@synthesize imageScale;
- (void)layoutSubviews {
[self.bannerView remakeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.contentView.left).equalTo(0);
make.right.equalTo(self.contentView.right).equalTo(0);
make.top.equalTo(self.contentView.top);
make.bottom.equalTo(self.contentView.bottom);
}];
}
@end
|