説明なし

AvatarImageView.h 407B

1234567891011121314151617181920
  1. //
  2. // AvatarImageView.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 15/7/27.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface AvatarImageView : UIView
  10. @property (nonatomic, strong) UIImageView *avatarView;
  11. - (instancetype)initWithFrame:(CGRect)frame
  12. boardWidth:(CGFloat)boardWidth
  13. boardColor:(UIColor*)boardColor;
  14. @end