如何通过终端启动.app?

时间:2015-08-11 14:34:38

标签: xcode xcode6 ios-simulator .app

要使用终端I安装.app文件,请按照此处提供的步骤https://stackoverflow.com/a/27313079进行操作。 它工作正常但是当我尝试启动时,应用程序崩溃了。我遵循了这里提到的一些建议Failed to Attach to Process ID Xcode但到目前为止我没有任何作用。非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

好吧,转到终端,(假设你安装了Xcode命令行工具)

但首先,启动iPhone模拟器。

然后在终端中输入angular.module("app", ['dndLists']).controller("SimpleDemoController", function ($scope) { $scope.models = { selected: null, lists: { "A": [], "B": [] } }; // Generate initial model for (var i = 1; i <= 3; ++i) { $scope.models.lists.A.push({ label: "Item A" + i }); $scope.models.lists.B.push({ label: "Item B" + i }); } // Model to JSON for demo purpose $scope.$watch('models', function (model) { $scope.modelAsJson = angular.toJson(model, true); }, true); }); , 当然xcrun simctl install booted /foo/bar.app是您的应用。 然后等几秒钟。

完成后,转到应用的/foo/bar.app文件,找到显示Info.plist的行。它旁边是包标识符,它应如下所示:bundle identifier或类似标识符。

然后再次转到终端并输入com.foo.bar,其中xcrun simctl launch booted com.foo.bar是您的应用标识符。