JXMyBaseInFovc.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // JXMyBaseInFovc.h
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/5/29.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "XMGMyBaseVC.h"
  10. #import "JXChatViewC.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface JXMyBaseInFovc : XMGMyBaseVC
  13. @property (nonatomic,strong) JXUserObject* user;
  14. @property (nonatomic, copy) NSString *userId;
  15. @property (nonatomic, assign) int fromAddType;
  16. @property (nonatomic, weak) JXChatViewC *chatVC2;
  17. @end
  18. NS_ASSUME_NONNULL_END
  19. /**
  20. return;
  21. [g_server delHeadImage:self.user.userId];
  22. JXImageScrollVC * imageVC = [[JXImageScrollVC alloc]init];
  23. imageVC.imageSize = CGSizeMake(JX_SCREEN_WIDTH, JX_SCREEN_WIDTH);
  24. imageVC.iv = [[JXImageView alloc] initWithFrame:CGRectMake(0, 0, JX_SCREEN_WIDTH, JX_SCREEN_WIDTH)];
  25. imageVC.iv.center = imageVC.view.center;
  26. [g_server getHeadImageLarge:self.user.userId userName:self.user.userNickname imageView:imageVC.iv];
  27. [self addTransition:imageVC];
  28. [self presentViewController:imageVC animated:YES completion:^{
  29. }];
  30. }
  31. //添加VC转场动画
  32. - (void) addTransition:(JXImageScrollVC *) siv
  33. {
  34. _scaleTransition = [[DMScaleTransition alloc]init];
  35. [siv setTransitioningDelegate:_scaleTransition];
  36. */