-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
466fd63
commit f2cc8fd
Showing
90 changed files
with
3,842 additions
and
6,311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 39 additions & 8 deletions
47
...teAVSDK_TRTC/TXLiteAVSDK_TRTC/TXLiteAVSDK_TRTC.framework/Headers/V2TXLivePlayerObserver.h
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
...Demo/TUIKitDemo.xcodeproj/xcuserdata/harvy.xcuserdatad/xcschemes/xcschememanagement.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>SchemeUserState</key> | ||
<dict> | ||
<key>TUIKitDemo.xcscheme_^#shared#^_</key> | ||
<dict> | ||
<key>orderHint</key> | ||
<integer>15</integer> | ||
</dict> | ||
<key>publishToGit.xcscheme_^#shared#^_</key> | ||
<dict> | ||
<key>orderHint</key> | ||
<integer>16</integer> | ||
</dict> | ||
<key>pushservice.xcscheme_^#shared#^_</key> | ||
<dict> | ||
<key>orderHint</key> | ||
<integer>17</integer> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</plist> |
Binary file added
BIN
+58.4 KB
iOS/Demo/TUIKitDemo.xcworkspace/xcuserdata/harvy.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// AppDelegate+APNS.h | ||
// TUIKitDemo | ||
// | ||
// Created by harvy on 2021/12/22. | ||
// Copyright © 2021 Tencent. All rights reserved. | ||
// | ||
|
||
#import "AppDelegate.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface AppDelegate (APNS) | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// AppDelegate+APNS.m | ||
// TUIKitDemo | ||
// | ||
// Created by harvy on 2021/12/22. | ||
// Copyright © 2021 Tencent. All rights reserved. | ||
// | ||
|
||
#import "AppDelegate+APNS.h" | ||
|
||
@implementation AppDelegate (APNS) | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// | ||
// AppDelegate+Push.h | ||
// TUIKitDemo | ||
// | ||
// Created by harvy on 2021/12/22. | ||
// Copyright © 2021 Tencent. All rights reserved. | ||
// | ||
|
||
#import "AppDelegate.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
//apns | ||
#ifdef DEBUG | ||
#define sdkBusiId 0 | ||
#else | ||
#define sdkBusiId 0 | ||
#endif | ||
|
||
@interface AppDelegate (Push) | ||
|
||
- (void)push_registNotification; | ||
- (void)push_onLoginSucc; | ||
|
||
- (void)push_applicationDidEnterBackground:(UIApplication *)application; | ||
- (void)push_applicationWillEnterForeground:(UIApplication *)application; | ||
|
||
#pragma mark - 未读数相关 | ||
// 总的未读数发生了变化 | ||
- (void)onTotalUnreadCountChanged:(UInt64)totalUnreadCount; | ||
// 清空所有未读 | ||
- (void)clearUnreadMessage; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.