1234567891011121314151617 |
- //
- // FLImageTextButton.h
- // FirstLink
- //
- // Created by Lemon on 15/5/8.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FLImageTextButton : UIView
- @property (nonatomic, strong) UIImageView *imageView;
- @property (nonatomic, strong) UILabel *textLabel;
- @end
|