123456789101112131415161718192021222324252627282930 |
- //
- // VideoManager+view.m
- // SikeyComm
- //
- // Created by 刘振兴 on 2025/2/18.
- // Copyright © 2025 BaH Cy. All rights reserved.
- //
- #import "VideoManager+view.h"
- @implementation VideoManager (view)
- - (void)showInCallVC {
- if (self.mInCallVC)
- return;
- NSLog(@"VideoManager: showInCallVC");
- UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
- self.mInCallVC = [storyboard instantiateViewControllerWithIdentifier:@"InCallVC"];
- [self.mInCallVC setHidesBottomBarWhenPushed:YES];
- [EUtil pushViewController:self.mInCallVC animated:YES];
- }
- - (void)removeInCallVC {
- if (self.mInCallVC) {
- [self.mInCallVC.navigationController popViewControllerAnimated:YES];
- }
- self.mInCallVC = nil;
- }
- @end
|