EncodeItemViewController.h 412 B

1234567891011121314151617
  1. //
  2. // EncodeItemViewController.h
  3. // FunSDKDemo
  4. //
  5. // Created by XM on 2018/11/6.
  6. // Copyright © 2018年 XM. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface EncodeItemViewController : UIViewController
  10. @property (nonatomic, copy) void (^itemSelectStringBlock)(NSString *encodeStr); //字符串回调
  11. - (void)setValueArray:(NSMutableArray *)array; //设置当前界面需要显示的内容
  12. @end