iPhoneのカメラを利用して撮影します。 (1回目は背面カメラを起動してフォーカスを当てるところまでを説明します) 参考(英語): Taking control of the iPhone camera in iOS 8 with Swift (Part 1) AVCaptureDeviceで利用できるカメラを確認する //利用できるカメラを確認する import AVFoundation let captureSession = AVCaptureSession(); captureSession.sessionPreset = AVCaptureSessionPresetLow; let devices = AVCaptureDevice.devices(); println(devices); こんな感じで出力されます。(私のiPhone5S/iOS8の場合) [AVCapture
