Skip to content

Commit f2cc8fd

Browse files
committed
TUIKitDemo 5.9.1886
1 parent 466fd63 commit f2cc8fd

File tree

90 files changed

+3842
-6311
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+3842
-6311
lines changed

iOS/Demo/Podfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ target 'TUIKitDemo' do
99
use_modular_headers!
1010

1111
# Pods for Example
12-
pod 'TUIChat', '5.9.1872'
13-
pod 'TUIConversation', '5.9.1872'
14-
pod 'TUIContact', '5.9.1872'
15-
pod 'TUIGroup', '5.9.1872'
16-
pod 'TUISearch', '5.9.1872'
12+
pod 'TUIChat', '5.9.1886'
13+
pod 'TUIConversation', '5.9.1886'
14+
pod 'TUIContact', '5.9.1886'
15+
pod 'TUIGroup', '5.9.1886'
16+
pod 'TUISearch', '5.9.1886'
1717
pod 'TUICalling'
1818
pod 'MJRefresh'
1919
end

iOS/Demo/Pods/TXLiteAVSDK_TRTC/TXLiteAVSDK_TRTC/TXLiteAVSDK_TRTC.framework/Headers/V2TXLivePlayerObserver.h

Lines changed: 39 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iOS/Demo/TUIKitDemo.xcodeproj/project.pbxproj

Lines changed: 40 additions & 92 deletions
Large diffs are not rendered by default.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>TUIKitDemo.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>15</integer>
11+
</dict>
12+
<key>publishToGit.xcscheme_^#shared#^_</key>
13+
<dict>
14+
<key>orderHint</key>
15+
<integer>16</integer>
16+
</dict>
17+
<key>pushservice.xcscheme_^#shared#^_</key>
18+
<dict>
19+
<key>orderHint</key>
20+
<integer>17</integer>
21+
</dict>
22+
</dict>
23+
</dict>
24+
</plist>
Binary file not shown.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//
2+
// AppDelegate+APNS.h
3+
// TUIKitDemo
4+
//
5+
// Created by harvy on 2021/12/22.
6+
// Copyright © 2021 Tencent. All rights reserved.
7+
//
8+
9+
#import "AppDelegate.h"
10+
11+
NS_ASSUME_NONNULL_BEGIN
12+
13+
@interface AppDelegate (APNS)
14+
15+
@end
16+
17+
NS_ASSUME_NONNULL_END
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// AppDelegate+APNS.m
3+
// TUIKitDemo
4+
//
5+
// Created by harvy on 2021/12/22.
6+
// Copyright © 2021 Tencent. All rights reserved.
7+
//
8+
9+
#import "AppDelegate+APNS.h"
10+
11+
@implementation AppDelegate (APNS)
12+
13+
@end
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
//
2+
// AppDelegate+Push.h
3+
// TUIKitDemo
4+
//
5+
// Created by harvy on 2021/12/22.
6+
// Copyright © 2021 Tencent. All rights reserved.
7+
//
8+
9+
#import "AppDelegate.h"
10+
11+
NS_ASSUME_NONNULL_BEGIN
12+
13+
//apns
14+
#ifdef DEBUG
15+
#define sdkBusiId 0
16+
#else
17+
#define sdkBusiId 0
18+
#endif
19+
20+
@interface AppDelegate (Push)
21+
22+
- (void)push_registNotification;
23+
- (void)push_onLoginSucc;
24+
25+
- (void)push_applicationDidEnterBackground:(UIApplication *)application;
26+
- (void)push_applicationWillEnterForeground:(UIApplication *)application;
27+
28+
#pragma mark - 未读数相关
29+
// 总的未读数发生了变化
30+
- (void)onTotalUnreadCountChanged:(UInt64)totalUnreadCount;
31+
// 清空所有未读
32+
- (void)clearUnreadMessage;
33+
34+
@end
35+
36+
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)