コード例 #1
0
 /// <summary>
 /// 开始录音
 /// </summary>
 public bool StartRecord()
 {
     if (Application.platform == RuntimePlatform.Android)
     {
         return(NativeManager.OnFuncCall <bool>("StartRecord"));
     }
     else if (Application.platform == RuntimePlatform.IPhonePlayer)
     {
         return(NativeManager.StartRecord());
     }
     return(false);
 }