项目中遇到的小问题


title: 项目遇到的问题
date: 2016-11-28 11:24:07
tags: 问题
categories: 分类


1. AVAudioRecorder录音和AVAudioPlayer播放的音频声音很小

解决方案

在调用AVAudioPlayer的播放方法前,加入如下代码:

UInt32 doChangeDefaultRoute = 1;
AudioSessionSetProperty(kAudioSessionProperty_OverrideCategoryDefaultToSpeaker,sizeof(doChangeDefaultRoute), &doChangeDefaultRoute);

2. 上传到APP Store时遇到 URL Scheme的问题

The following URL schemes found in your app are not in the correct format:[12345678]. URL schemes need to begin with an alphabetic character,and be comprised of alphanumeric characters, the period, the hyphen or the plus sign only. Please see RFC 1738 for more detail.

这个问题是在 项目->info->URL Types 对应的位置没有按照字母+数字(即对应的appid)的格式书写

例如上述的url scheme 对应的是腾讯QQ,原来填的12345678要填写成tencent12345678

你可能感兴趣的:(项目中遇到的小问题)