Toggle navigation
Toggle navigation
This project
Loading...
Sign in
hh_public
/
hhsdk.ios.demo.trtc
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
chengyanfang
2020-12-04 17:13:49 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6d45033baf2fd23bbbc205f3ac5d7f5cea896182
6d45033b
1 parent
f63e7b39
3.0.6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletions
HHMSDKDemo/LoginVC.swift
README.md
HHMSDKDemo/LoginVC.swift
View file @
6d45033
...
...
@@ -95,12 +95,18 @@ class LoginVC: UIViewController {
@IBAction
func
skipToHome
(
_
sender
:
UIButton
)
{
if
HHSDKOptions
.
default
.
mMessageOptions
.
isByPresent
{
HHSDKOptions
.
default
.
mMessageOptions
.
isByPresent
=
true
if
let
vc
=
HHMSDK
.
default
.
chatHomeVC
()
{
let
nav
=
UINavigationController
(
rootViewController
:
vc
)
nav
.
modalPresentationStyle
=
.
fullScreen
self
.
present
(
nav
,
animated
:
true
,
completion
:
nil
)
}
if
HHSDKOptions
.
default
.
mMessageOptions
.
isByPresent
{
}
else
{
HHMSDK
.
default
.
skipChatHome
()
}
...
...
README.md
View file @
6d45033
...
...
@@ -40,6 +40,13 @@
## 0. 更新日志
> 3.0.6.120416 (2020-12-04)
-
删除项目中UIWebview的引用
-
适配不同版本的xcode
> 3.0.6
-
HHMVideoDelegate增加getChatParentView(_ view : UIView),以便开发者在呼叫页面添加自定义view
...
...
Please
register
or
login
to post a comment