| 12345678910111213141516 |
- //
- // CustomeApproveIdeaView.h
- // shiku_im
- //
- // Created by 周西 on 17/4/12.
- // Copyright © 2017年 UAS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JOTextview.h"
- @interface CustomeApproveIdeaView : UIView
- @property (strong , nonatomic) UIButton *SkipThisStepBtn;
- @property (strong , nonatomic) UIButton *comfirmBtn;
- @property (copy , nonatomic) void (^block)(NSString *ApproveText);
- @property(nonatomic,strong)JOTextView * textView;
- @end
|