TwoImgView.h 450 B

1234567891011121314151617181920
  1. //
  2. // TwoImgView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/9/24.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TwoImgView : UIView
  10. @property (nonatomic, strong) UIImageView *headView;
  11. @property (nonatomic, strong) UIImageView *iconImgView;
  12. - (id)initWithFrame:(CGRect)frame;//初始化
  13. - (void)getImgViewWithHeadImgString:(NSString *)headImgString andIconImgView:(NSString *)iconImgView;
  14. @end