UserInfoView.h 548 B

12345678910111213141516171819202122232425262728
  1. //
  2. // UserInfoView.h
  3. // FunSDKDemo
  4. //
  5. // Created by wujiangbo on 2018/11/1.
  6. // Copyright © 2018年 wujiangbo. All rights reserved.
  7. //
  8. /**
  9. 用户信息显示界面视图
  10. */
  11. #import <UIKit/UIKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface UserInfoView : UIView
  14. @property (nonatomic, copy) void(^clickBindAccount)(NSString *titleStr); //获取验证码
  15. @property (nonatomic, strong) UITableView *tbUserInfo; //视图列表
  16. @property (nonatomic, strong) NSMutableDictionary *infoDic; //用户信息数据
  17. @end
  18. NS_ASSUME_NONNULL_END