如何在XCode 6 iOS模拟器中运行/录制iOS应用程序?

时间:2014-10-23 08:00:46

标签: ios xcode video simulator

我可能会犯这个错误,但我正在尝试在Xcode 6 iOS模拟器中运行iOS应用程序,以便录制应用程序的视频教程。 我安装了xCode并可以启动iOS模拟器,但似乎无法安装.app文件。 〜/ Library / Developer / CoreSimulator文件夹是一个完整的谜,没有明确的位置来删除应用程序文件。

有什么想法吗?

或者,是否有更简单的方法来录制iOS应用的视频?人们必须一直这样做教程...

由于

3 个答案:

答案 0 :(得分:31)

如果您在设备上运行应用程序,则可以使用新的Yosemite功能将USB记录到QuickTime。

但是,当您使用模拟器时,您需要在QuickTime中进行部分屏幕录制。

使用QuickTime

启动QuickTime,然后转到文件>新的屏幕录制。您可以单击以选择整个屏幕,也可以拖动以仅记录屏幕的一部分。

enter image description here

替代

如果您想要更多灵活性,则需要使用第三方软件,例如ScreenFlow

答案 1 :(得分:4)

Xcode 8.2 ,您可以使用 xcrun命令行实用程序截取屏幕截图或录制模拟器窗口的视频。

~/wdi/portfoliopage (master)$ git remote add origin https://murphypicard.github.io/

~/wdi/portfoliopage (master)$ git remote -v
origin  //murphypicard.github.io/ (fetch)
origin  //murphypicard.github.io/ (push)

~/wdi/portfoliopage (master)$ git remote get-url 
origin //murphypicard.github.io/

~/wdi/portfoliopage (master)$ git push -u origin master
fatal: repository //murphypicard.github.io/' not found

~/wdi/portfoliopage (master)$ git remote add origin https://murphypicard.github.io/
fatal: remote origin already exists.

~/wdi/portfoliopage (master)$ git remote add origin git@github.com:MurphyPicard/arayaghsizian.github.io.git
fatal: remote origin already exists.

~/wdi/portfoliopage (master)$ git push origin master
fatal: repository //murphypicard.github.io/' not found

~/wdi/portfoliopage (master)$ git push gh-pages master
fatal: 'gh-pages' does not appear to be a git repository
fatal: Could not read from remote repository.

查看this link了解详情。

答案 2 :(得分:1)

你可以使用'Build&在Xcode中运行'以在iOS Simualtor中安装和运行您的应用程序。

或者,您可以运行xcrun simctl install <Device UDID> <Path to app>来安装您的应用。有关详细信息,请参阅xcrun simctl help

关于录制截屏视频,您应该使用QuickTime。