当我尝试使用以下命令构建我的xcode项目时:
xcodebuild -workspace "Converse.xcworkspace" -sch
eme "Converse" -configuration “Debug” -sdk iphonesimulator7.1 -arch i386 ONLY_
ACTIVE_ARCH=NO
它构建良好,但当我尝试双击它生成的应用程序时,它说:You can’t open the application because it is not supported on this type of Mac.
有谁知道为什么会这样?
答案 0 :(得分:1)
iOS应用程序需要运行模拟器。正如你所说的,你可以从Xcode运行它们。如果您没有该项目,则需要将它们部署为:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app/Contents/MacOS/iPhone\ Simulator -SimulateApplication /Path/ToIso.app/AppName
答案 1 :(得分:0)
使用Xcode而不是xcodebuild在模拟器上运行您的应用程序。