我有一个使用以下宏的应用程序:
#define IS_IPAD ([[UIDevice currentDevice] respondsToSelector:@selector(userInterfaceIdiom)] && [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
这对我来说非常有效。

但是,我使用它来关闭在应用程序中拍照的选项。

无论设备如何,如何检测相机选项是否可用?

最佳答案



那应该工作

10-07 22:48