CommonEditorCellImg.h 601 B

12345678910111213141516171819
  1. //
  2. // CommonEditorCellImg.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 11/4/15.
  6. // Copyright © 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CommonEditorCellImg : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UILabel *labelTitle;
  11. @property (strong, nonatomic) IBOutlet UIButton *buttonImg;
  12. @property (strong, nonatomic) IBOutlet UILabel *labelDescription;
  13. @property bool editable;
  14. @property bool img_validate;
  15. @property bool isFullScreen;
  16. @property (nonatomic , copy) void (^imgChanged)(NSString* url_down,NSString* url_up);
  17. @end