iOS front camera only app

送分小仙女□ 提交于 2019-12-08 09:50:36

问题


I've had apps denied in the past for not specifying in the plist or something that the app will ONLY run properly on devices with 3g or devices with a compass, or with texting, etc. How do I specify that my app will ONLY run properly with devices that have a front camera (like Skype would have had to do) Thanks!


回答1:


If you want your app to be used only on devices that have a front camera, then you can specify that by adding front-facing-camera to the app required capabilities.

However, if the app has enough functionality when running on devices with no front facing camera, then it is probably better not to specify this capability. From the documentation:

You should include keys only for the features that your application absolutely requires. If your application can accommodate missing features by avoiding the code paths that use those features, do not include the corresponding key.



来源:https://stackoverflow.com/questions/9760238/ios-front-camera-only-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!