web-dev-qa-db-ja.com

XCode 6 iOSシミュレーターでiOSアプリを実行/記録するにはどうすればよいですか?

私はこれについて間違っている可能性がありますが、Xcode 6 iOSシミュレーターでiOSアプリを実行して、アプリのビデオチュートリアルを記録しようとしています。 xCodeがインストールされていて、iOSシミュレーターを起動できますが、.appファイルをインストールする方法がないようです。 〜/ Library/Developer/CoreSimulatorフォルダーは完全な謎であり、アプリファイルをドロップする明確な場所はありません。

何か案は?

または、iOSアプリのビデオを録画する簡単な方法はありますか?人々はチュートリアルのためにいつもそれをしなければなりません...

ありがとう

16
Vinny Troia

アプリをデバイスで実行している場合は、新しいYosemite機能を使用して、USB経由でQuickTimeに録音できます。

ただし、シミュレータを使用しているため、QuickTimeで部分的な画面記録を行う必要があります。

QuickTimeの使用

QuickTimeを起動し、[ファイル]> [新しい画面記録]に移動します。クリックして画面全体を選択するか、ドラッグして画面の一部のみを記録できます。

enter image description here

代替案

柔軟性を高めたい場合は、 ScreenFlow のようなサードパーティソフトウェアを使用する必要があります。

32
squarefrog

Xcode 8.2から、xcrunコマンドラインを使用して、シミュレーターウィンドウのスクリーンショットを撮るか、ビデオを録画できますユーティリティ

Launch your app in Simulator.
Launch Terminal (located in /Applications/Utilities), and enter the appropriate command:
To take a screenshot, use the screenshot operation:
xcrun simctl io booted screenshot

You can specify an optional filename at the end of the command.

To record a video, use the recordVideo operation:
xcrun simctl io booted recordVideo <filename>.<extension>

To stop recording, press Control-C in Terminal.

Note: You must specify a filename for recordVideo.
The default location for the created file is the current directory.
For more information on simctl, run this command in Terminal:

xcrun simctl help

For more information on the io subcommand of simctl, run this command:

xcrun simctl io help

詳細は this link を確認してください。

4
Abhijith

Xcodeの「Build&Run」を使用して、iOS Simualtorにアプリをインストールして実行できます。

または、xcrun simctl install <Device UDID> <Path to app>アプリをインストールします。見る xcrun simctl help 詳細については。

スクリーンキャプチャビデオの録画については、QuickTimeを使用する必要があります。