Conditional compile when running in Simulator as opposed to on a device

后端 未结 3 483
[愿得一人]
[愿得一人] 2021-02-01 03:06

Is there a compiler directive I can use to compile a different line of code when targetting the simulator as opposed to my device. Something like:

# IF SIMULATOR         


        
3条回答
  •  广开言路
    2021-02-01 03:56

    #if TARGET_IPHONE_SIMULATOR
    [self.imagePicker setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
    #else
    [self.imagePicker setSourceType:UIImagePickerControllerSourceTypeCamera];
    #endif
    

提交回复
热议问题