| 12345678910111213141516171819 |
- //
- // CommonEditorCellImg.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 11/4/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CommonEditorCellImg : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *labelTitle;
- @property (strong, nonatomic) IBOutlet UIButton *buttonImg;
- @property (strong, nonatomic) IBOutlet UILabel *labelDescription;
- @property bool editable;
- @property bool img_validate;
- @property bool isFullScreen;
- @property (nonatomic , copy) void (^imgChanged)(NSString* url_down,NSString* url_up);
- @end
|