The jonki

呼ばれて飛び出てじょじょじょじょーんき

2013-01-01から1ヶ月間の記事一覧

【iOS】Use Autolayoutをオフる

iOS5以前の開発の場合は、xibもしくはstoryboardのUse Autolayoutのチェックボックスを外せば下のようなエラーは消えるはず。 emptyExample[17406:707] *** Terminating app due to uncaught exception 'NSInvalidUnarchiveOperationException', reason: 'Co…

【iOS】【openFrameworks】'cstdlib' file not found

iOS用のopenFrameworksでiOSのGUIを使うべくUIViewControllerクラスを突っ込んだらこんなエラーが of_v0073_ios_release/libs/openFrameworks/utils/ofConstants.h:191:10: 'cstdlib' file not foundぐぐると追加したUIViewControllerクラスの拡張子を.m(Ob…

【iOS】AVAudioPlayerで再生速度を変える

rateを変更すれば再生速度がかわる。0.5で半分のスピード、2.0で2倍速といった感じ。ただsetEnableRateをYESにしないとrateの値は無視されるので注意。AVAudioPlayer Class Reference AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithData:data er…

【iOS】Google TTSでText To Speechを実装する

iOSでTTS (Text-To-Speech)、文字の読み上げができないかと思ってググるとこんなページが見つかる。 Is it possible to use TTS in iOS この掲示板で挙げられてる中で一番簡単そうなのはGoogle 翻訳でも使われてるやつ。GETで喋らせたいテキストを渡すだけだ…