File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 533
533
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
534
534
CODE_SIGN_ENTITLEMENTS = QuickStart/QuickStart.entitlements;
535
535
CODE_SIGN_STYLE = Automatic;
536
- CURRENT_PROJECT_VERSION = 9 ;
536
+ CURRENT_PROJECT_VERSION = 1 ;
537
537
DEVELOPMENT_TEAM = RM4A5PXTUX;
538
538
FRAMEWORK_SEARCH_PATHS = (
539
539
"$(inherited)",
561
561
CODE_SIGN_ENTITLEMENTS = QuickStart/QuickStart.entitlements;
562
562
CODE_SIGN_IDENTITY = "Apple Development";
563
563
CODE_SIGN_STYLE = Automatic;
564
- CURRENT_PROJECT_VERSION = 9 ;
564
+ CURRENT_PROJECT_VERSION = 1 ;
565
565
DEVELOPMENT_TEAM = RM4A5PXTUX;
566
566
FRAMEWORK_SEARCH_PATHS = (
567
567
"$(inherited)",
Original file line number Diff line number Diff line change @@ -179,6 +179,8 @@ extension VideoCallViewController {
179
179
180
180
self . localVideoView? . embed ( localSBVideoView)
181
181
self . view? . embed ( remoteSBVideoView)
182
+
183
+ self . mirrorLocalVideoView ( )
182
184
}
183
185
184
186
func resizeLocalVideoView( ) {
@@ -199,6 +201,11 @@ extension VideoCallViewController {
199
201
} )
200
202
}
201
203
204
+ func mirrorLocalVideoView( ) {
205
+ guard let localSBView = self . localVideoView? . subviews. first else { return }
206
+ localSBView. transform = CGAffineTransform ( scaleX: - 1.0 , y: 1.0 )
207
+ }
208
+
202
209
// SendBirdCalls: Start / Stop Video
203
210
func updateLocalVideo( isEnabled: Bool ) {
204
211
self . videoOffButton. setBackgroundImage ( UIImage ( named: isEnabled ? " btnVideoOffSelected " : " btnVideoOff " ) , for: . normal)
You can’t perform that action at this time.
0 commit comments