YBCenterVC.h 729 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YBCenterVC.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2022/5/30.
  6. // Copyright © 2022 cat. All rights reserved.
  7. //
  8. #import "YBBaseViewController.h"
  9. typedef void (^CenterBack)(void);
  10. typedef void (^CenterCallBack)(NSString *isAttent);
  11. @interface YBCenterVC : YBBaseViewController
  12. @property(nonatomic,assign)BOOL isChatPage; //从聊天点击头像而来
  13. @property(nonatomic,copy)CenterBack backEvent;
  14. @property(nonatomic,copy)CenterCallBack followEvent;
  15. @property(nonatomic,assign)BOOL isPush; //从其他页面push
  16. /** 他人uid,跳转页面一定要写!默认是自己的uid */
  17. @property(nonatomic,strong)NSString *otherUid;
  18. //tabbar
  19. @property(nonatomic,assign)BOOL isTabbar;
  20. @end