123456789101112131415161718192021222324 |
- //
- // MTBaseImageView.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTBaseImageView.h"
- @implementation MTBaseImageView
- +(MTBaseImageView *)imageViewWithFrame:(CGRect)rect image:(UIImage *)image{
- MTBaseImageView*imageView = [MTBaseImageView new];
- imageView.image = image;
- return imageView;
- }
- /*
- // Only override drawRect: if you perform custom drawing.
- // An empty implementation adversely affects performance during animation.
- - (void)drawRect:(CGRect)rect {
- // Drawing code
- }
- */
- @end
|