我在实现相机功能方面遇到了一些麻烦。我在@UIApplicationMain中收到SIGBART信号错误 class AppDelegate:UIResponder,UIApplicationDelegate类,我无法弄清楚为什么。我试过在这里搜索,但没有运气。希望你们中的一个可以提供帮助!
@IBAction func cameraButtonAction(_ sender: Any) {
if UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.camera){
let imagePicker = UIImagePickerController()
imagePicker.delegate = self
imagePicker.sourceType = UIImagePickerControllerSourceType.camera;
}