How to Restrict the iOS app only for iPhone excluding iPad?

后端 未结 6 611
我寻月下人不归
我寻月下人不归 2020-12-15 04:20

I want to restrict my app only for iPhone. I don\'t want my app is available for iPad.

6条回答
  •  萌比男神i
    2020-12-15 04:59

    Add TARGETED_DEVICE_FAMILY = 1; at project.pbxprod

    In other words change TARGETED_DEVICE_FAMILY = "1,2" to TARGETED_DEVICE_FAMILY = 1;

提交回复
热议问题