Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
GMAILab
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
GMAILab
Commits
f16b49e9
Commit
f16b49e9
authored
May 25, 2020
by
朱璇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 资源文件获取不到的问题
parent
0d4f10ee
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
8 additions
and
6 deletions
+8
-6
GMAILab.podspec
GMAILab.podspec
+1
-1
GMDoctorVideoTelephoneLogin.m
...Face/VideoTelephone/manager/GMDoctorVideoTelephoneLogin.m
+1
-1
GMTelephoneAudioPlay.m
...sses/ToFace/VideoTelephone/manager/GMTelephoneAudioPlay.m
+3
-2
telephoneDoctor.aiff
...Classes/ToFace/VideoTelephone/source/telephoneDoctor.aiff
+0
-0
videoTelephone.aiff
.../Classes/ToFace/VideoTelephone/source/videoTelephone.aiff
+0
-0
videoTelephone.mp3
...b/Classes/ToFace/VideoTelephone/source/videoTelephone.mp3
+0
-0
GMUserVideoTelephoneWindow.m
...ToFace/VideoTelephone/window/GMUserVideoTelephoneWindow.m
+1
-1
GMVideoWaitingView.m
GMAILab/Classes/ToFace/Waiting/GMVideoWaitingView.m
+2
-1
waiting_loading.webp
GMAILab/Classes/ToFace/Waiting/waiting_loading.webp
+0
-0
No files found.
GMAILab.podspec
View file @
f16b49e9
...
...
@@ -57,7 +57,7 @@ TODO: Add long description of the pod here.
# end
s
.
resource_bundles
=
{
'GMAILab'
=>
[
'GMAILab/Assets/*.{png,xib}'
]
'GMAILab'
=>
[
'GMAILab/Assets/*.{png,xib
,webp,mp3
}'
]
}
# s.public_header_files = 'Pod/Classes/**/*.h'
...
...
GMAILab/Classes/ToFace/VideoTelephone/manager/GMDoctorVideoTelephoneLogin.m
View file @
f16b49e9
...
...
@@ -78,7 +78,7 @@ static GMDoctorVideoTelephoneLogin *loginManager = nil;
_extensionDict
=
extentsionDict
;
_clientRole
=
TTTRtc_ClientRole_Broadcaster
;
TTManager
.
telephoneStatus
=
TelephoneVideoStatus_wating
;
_audioPlay
=
[[
GMTelephoneAudioPlay
alloc
]
initWithAudioSource
:
@"videoTelephone"
ofType
:
@"mp3"
];
_audioPlay
=
[[
GMTelephoneAudioPlay
alloc
]
initWithAudioSource
:
@"videoTelephone"
ofType
:
@"
.
mp3"
];
[
GMVideoTelephoneRequestTool
doctorVideoTelephoneMessage
:
messageDict
finishBlock
:
^
(
BOOL
success
,
NSDictionary
*
modelDict
,
NSString
*
errorMessage
)
{
if
(
success
)
{
[[[
UIApplication
sharedApplication
]
keyWindow
]
endEditing
:
YES
];
...
...
GMAILab/Classes/ToFace/VideoTelephone/manager/GMTelephoneAudioPlay.m
View file @
f16b49e9
...
...
@@ -9,6 +9,7 @@
#import "GMTelephoneAudioPlay.h"
#import <AVFoundation/AVFoundation.h>
#import <AudioToolbox/AudioToolbox.h>
#import "NSBundle+GMAILab.h"
@interface
GMTelephoneAudioPlay
()
@property
(
nonatomic
,
strong
)
AVAudioPlayer
*
audioPlay
;
...
...
@@ -18,8 +19,8 @@
-
(
GMTelephoneAudioPlay
*
)
initWithAudioSource
:(
NSString
*
)
name
ofType
:(
nonnull
NSString
*
)
type
{
self
=
[
super
init
];
if
(
self
)
{
NSString
*
soundPath
=
[[
NSBundle
mainBundle
]
pathForResource
:
name
ofType
:
type
];
NSURL
*
soundUrl
=
[
NSURL
fileURLWithPath
:
soundPath
];
NSString
*
soundPath
=
[[
NSBundle
gm_AILabBundle
:[
self
class
]
]
pathForResource
:
name
ofType
:
type
];
NSURL
*
soundUrl
=
[
NSURL
fileURLWithPath
:
soundPath
?
soundPath
:
@""
];
//初始化播放器对象
self
.
audioPlay
=
[[
AVAudioPlayer
alloc
]
initWithContentsOfURL
:
soundUrl
error
:
nil
];
//设置声音的大小
...
...
GMAILab/Classes/ToFace/VideoTelephone/source/telephoneDoctor.aiff
deleted
100644 → 0
View file @
0d4f10ee
File deleted
GMAILab/Classes/ToFace/VideoTelephone/source/videoTelephone.aiff
deleted
100644 → 0
View file @
0d4f10ee
File deleted
GMAILab/Classes/ToFace/VideoTelephone/source/videoTelephone.mp3
deleted
100644 → 0
View file @
0d4f10ee
File deleted
GMAILab/Classes/ToFace/VideoTelephone/window/GMUserVideoTelephoneWindow.m
View file @
f16b49e9
...
...
@@ -93,7 +93,7 @@
userFrame
=
self
.
bounds
;
doctorFrame
=
CGRectMake
(
MAINSCREEN_WIDTH
-
width
-
4
,
OCNavigationBar
.
barHeight
+
25
,
width
,
heigh
);
self
.
windowStatu
=
YES
;
_audioPlay
=
[[
GMTelephoneAudioPlay
alloc
]
initWithAudioSource
:
@"videoTelephone"
ofType
:
@"mp3"
];
_audioPlay
=
[[
GMTelephoneAudioPlay
alloc
]
initWithAudioSource
:
@"videoTelephone"
ofType
:
@"
.
mp3"
];
[
_audioPlay
startAudioPlay
];
}
else
{
doctorFrame
=
self
.
bounds
;
...
...
GMAILab/Classes/ToFace/Waiting/GMVideoWaitingView.m
View file @
f16b49e9
...
...
@@ -13,6 +13,7 @@
#import "GMLibraryHeader.h"
#import <GMBase/GMBaseTool.h>
#import "NSBundle+GMAILab.h"
#define centerPoint CGPointMake(MAINSCREEN_WIDTH / 2, MAINSCREEN_HEIGHT / 2)
#define circleAnimaitionTime 2
...
...
@@ -305,7 +306,7 @@
_animationView
.
runLoopMode
=
NSDefaultRunLoopMode
;
_animationView
.
frame
=
CGRectMake
(
0
,
78
,
MAINSCREEN_WIDTH
,
212
);
_animationView
.
centerX
=
centerPoint
.
x
;
NSString
*
path
=
[[
NSBundle
mainBundle
]
pathForResource
:
@"waiting_loading.webp"
ofType
:
nil
];
NSString
*
path
=
[[
NSBundle
gm_AILabBundle
:[
self
class
]]
pathForResource
:
@"waiting_loading"
ofType
:
@"webp"
];
NSData
*
data
=
[[
NSData
alloc
]
initWithContentsOfFile
:
path
];
UIImage
*
img
=
[
UIImage
sd_imageWithData
:
data
];
_animationView
.
image
=
img
;
...
...
GMAILab/Classes/ToFace/Waiting/waiting_loading.webp
deleted
100644 → 0
View file @
0d4f10ee
File deleted
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment