123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //
- // JXMyBaseInFovc.h
- // shiku_im
- //
- // Created by 123 on 2020/5/29.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "XMGMyBaseVC.h"
- #import "JXChatViewC.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface JXMyBaseInFovc : XMGMyBaseVC
- @property (nonatomic,strong) JXUserObject* user;
- @property (nonatomic, copy) NSString *userId;
- @property (nonatomic, assign) int fromAddType;
-
- @property (nonatomic, weak) JXChatViewC *chatVC2;
- @end
- NS_ASSUME_NONNULL_END
- /**
-
- return;
- [g_server delHeadImage:self.user.userId];
-
- JXImageScrollVC * imageVC = [[JXImageScrollVC alloc]init];
-
- imageVC.imageSize = CGSizeMake(JX_SCREEN_WIDTH, JX_SCREEN_WIDTH);
-
- imageVC.iv = [[JXImageView alloc] initWithFrame:CGRectMake(0, 0, JX_SCREEN_WIDTH, JX_SCREEN_WIDTH)];
-
- imageVC.iv.center = imageVC.view.center;
-
- [g_server getHeadImageLarge:self.user.userId userName:self.user.userNickname imageView:imageVC.iv];
-
-
- [self addTransition:imageVC];
- [self presentViewController:imageVC animated:YES completion:^{
-
- }];
-
- }
- //添加VC转场动画
- - (void) addTransition:(JXImageScrollVC *) siv
- {
- _scaleTransition = [[DMScaleTransition alloc]init];
- [siv setTransitioningDelegate:_scaleTransition];
- */
|