1234567891011121314151617181920 |
- //
- // AvatarImageView.h
- // FirstLink
- //
- // Created by ascii on 15/7/27.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface AvatarImageView : UIView
- @property (nonatomic, strong) UIImageView *avatarView;
- - (instancetype)initWithFrame:(CGRect)frame
- boardWidth:(CGFloat)boardWidth
- boardColor:(UIColor*)boardColor;
- @end
|