Skip to content

Commit

Permalink
iOS 升级8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
abyyxwang committed Jun 21, 2021
1 parent ce18c87 commit d618318
Show file tree
Hide file tree
Showing 71 changed files with 1,110 additions and 1,434 deletions.
75 changes: 0 additions & 75 deletions iOS/Demo/README.md

This file was deleted.

344 changes: 263 additions & 81 deletions iOS/Demo/TXLiteAVDemo.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions iOS/Demo/TXLiteAVDemo/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>8.7.1003</string>
<string>8.8.1075</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -36,7 +36,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1003</string>
<string>1075</string>
<key>IMSDKCrashReporterEnable</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
36 changes: 11 additions & 25 deletions iOS/Demo/TXLiteAVDemo/App/Main/MainViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -131,24 +131,10 @@ -(void)viewDidAppear:(BOOL)animated {
#endif
}

- (IBAction)logout:(id)sender {
- (IBAction)userInfoButtonClick:(id)sender {
#if !defined(UGC) && !defined(PLAYER)
UIAlertController *alert = [UIAlertController alertControllerWithTitle:V2Localize(@"V2.Live.LinkMicNew.suretologout") message:nil preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:V2Localize(@"V2.Live.LinkMicNew.cancel") style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

}];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:V2Localize(@"V2.Live.LinkMicNew.confirm") style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
[[ProfileManager shared] removeLoginCache];
[[AppUtils shared] showLoginController];
[[V2TIMManager sharedInstance] logout:^{

} fail:^(int code, NSString *msg) {

}];
}];
[alert addAction:cancelAction];
[alert addAction:okAction];
[self presentViewController:alert animated:YES completion:nil];
MineViewController *mineVC = [[MineViewController alloc] init];
[self.navigationController pushViewController:mineVC animated:YES];
#endif
}

Expand Down Expand Up @@ -406,17 +392,17 @@ - (void)initUI
pressGesture.numberOfTouchesRequired = 1;
[self.view addGestureRecognizer:pressGesture];

// 退出登录按钮
UIButton* logoutButton = [UIButton buttonWithType:UIButtonTypeCustom];
logoutButton.frame = CGRectMake(20, 0, 32, 32);
CGPoint center = logoutButton.center;
// 用户个人信息按钮
UIButton* userInfoButton = [UIButton buttonWithType:UIButtonTypeCustom];
userInfoButton.frame = CGRectMake(20, 0, 32, 32);
CGPoint center = userInfoButton.center;
center.y = lbHeadLine.center.y;
logoutButton.center = center;
[logoutButton setImage:[UIImage imageNamed:@"ic_logout"] forState:UIControlStateNormal];
[logoutButton addTarget:self action:@selector(logout:) forControlEvents:UIControlEventTouchUpInside];
userInfoButton.center = center;
[userInfoButton setImage:[UIImage imageNamed:@"ic_logout"] forState:UIControlStateNormal];
[userInfoButton addTarget:self action:@selector(userInfoButtonClick:) forControlEvents:UIControlEventTouchUpInside];

#if !defined(UGC) && !defined(PLAYER)
[self.view addSubview:logoutButton];
[self.view addSubview:userInfoButton];
#endif


Expand Down
4 changes: 4 additions & 0 deletions iOS/Demo/TXLiteAVDemo/App/ReplayKit2Define.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
#define Replaykit2Define_h

#define kReplayKitUseAppGroup 0
#if DEBUG
#define kReplayKit2AppGroupId @"group.com.tencent.liteav.RPLiveStreamShare"
#else
#define kReplayKit2AppGroupId @"group.com.tencent.liteav.RPLiveStreamRelease"
#endif
#define kReplayKit2PasteboardName @"group.com.tencent.replaykit2.pasteboard"
#define kReplayKitIPCPort 31753

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "bgm_back.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "checkbox_nor.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "checkbox_sel.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "exitRoom.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "关于.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "关于@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "关于@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "black_back.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "详情.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "详情@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "详情@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "免责申明.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "免责申明@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "免责申明@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "编辑.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "编辑@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "编辑@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "隐私条款.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "隐私条款@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "隐私条款@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading

0 comments on commit d618318

Please sign in to comment.