CustomeApproveIdeaView.h 460 B

12345678910111213141516
  1. //
  2. // CustomeApproveIdeaView.h
  3. // shiku_im
  4. //
  5. // Created by 周西 on 17/4/12.
  6. // Copyright © 2017年 UAS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JOTextview.h"
  10. @interface CustomeApproveIdeaView : UIView
  11. @property (strong , nonatomic) UIButton *SkipThisStepBtn;
  12. @property (strong , nonatomic) UIButton *comfirmBtn;
  13. @property (copy , nonatomic) void (^block)(NSString *ApproveText);
  14. @property(nonatomic,strong)JOTextView * textView;
  15. @end