Objective-c

アプリからメールを起動する

アプリからメールを起動する方法。 .hファイル ・メールのフレームワークを読み込む ・メール用のデリゲートをセット #import <MessageUI/MessageUI.h> @interface MainViewController : UIViewController <MFMailComposeViewControllerDelegate> .mファイル //---------------------------------------------------------</mfmailcomposeviewcontrollerdelegate></messageui/messageui.h>…

音量を取得する

iPhoneでマイクから拾った音の音量を取得する方法。 ① AudioToolBoxをインポートする #import <AudioToolbox/AudioToolbox.h> ②音声入力用のキューとタイマーのインスタンス変数を用意する @implementation ViewController{ AudioQueueRef _queue; NSTimer *_timer; } ③コールバック関数を</audiotoolbox/audiotoolbox.h>…