1

I have been looking at removing support for iPhone3GS for a title I am developing. I realise I can use the device capabilities to stop people using certain devices but I cant find a specific setting which would stop the support for only the 3GS?

Thanks

4

1 に答える 1

0

iPhone 4 で導入された前向きカメラを検出できます。

if( [UIImagePickerController isCameraDeviceAvailable: 
         UIImagePickerControllerCameraDeviceFront ])
{
   // do something
} else {
   // you have an iPhone 3GS or less
}

4 未満のモデルをサポートしていないと仮定しています。サポートしていない場合、特に 3GS を排除したいだけで、iPhone 3G を許可したい場合は、ビデオ機能を確認できます。3GS にはありますが、3 以下にはありません。

于 2012-10-31T20:33:45.167 に答える