简体   繁体   English

使用UIImagePickerController访问照片库后崩溃

[英]crash after accessing photo library using UIImagePickerController

I am having troubles with accessing Photo Library when the button is tapped. 点击按钮时访问照片库时遇到麻烦。 Just as usual I am asking if it is accessible. 像往常一样,我在问它是否可以访问。 Below is my code 以下是我的代码

@IBAction func photoLibraryButtonTapped(sender: UIButton) {

        if UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.PhotoLibrary) {
            let imagePicker = UIImagePickerController()
            imagePicker.delegate = self
            imagePicker.sourceType = UIImagePickerControllerSourceType.PhotoLibrary
            imagePicker.allowsEditing = true
            self.presentViewController(imagePicker, animated: true, completion: nil)
        }
    }

And here is what Xcode says: 这是Xcode所说的:

2016-08-08 23:05:11.209 Auyrma[1799:20237892] -[UIViewController photoLibraryButtonTapped:]: unrecognized selector sent to instance 0x7fd3e9d39ed0
2016-08-08 23:05:11.214 Auyrma[1799:20237892] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController photoLibraryButtonTapped:]: unrecognized selector sent to instance 0x7fd3e9d39ed0'
*** First throw call stack:
(
    0   CoreFoundation                      0x0000000113fdcd85 __exceptionPreprocess + 165
    1   libobjc.A.dylib                     0x0000000113a50deb objc_exception_throw + 48
    2   CoreFoundation                      0x0000000113fe5d3d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
    3   CoreFoundation                      0x0000000113f2bcfa ___forwarding___ + 970
    4   CoreFoundation                      0x0000000113f2b8a8 _CF_forwarding_prep_0 + 120
    5   UIKit                               0x00000001124d6a8d -[UIApplication sendAction:to:from:forEvent:] + 92
    6   UIKit                               0x0000000112649e67 -[UIControl sendAction:to:forEvent:] + 67
    7   UIKit                               0x000000011264a143 -[UIControl _sendActionsForEvents:withEvent:] + 327
    8   UIKit                               0x0000000112649263 -[UIControl touchesEnded:withEvent:] + 601
    9   UIKit                               0x000000011254999f -[UIWindow _sendTouchesForEvent:] + 835
    10  UIKit                               0x000000011254a6d4 -[UIWindow sendEvent:] + 865
    11  UIKit                               0x00000001124f5dc6 -[UIApplication sendEvent:] + 263
    12  UIKit                               0x00000001124cf553 _UIApplicationHandleEventQueue + 6660
    13  CoreFoundation                      0x0000000113f02301 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    14  CoreFoundation                      0x0000000113ef822c __CFRunLoopDoSources0 + 556
    15  CoreFoundation                      0x0000000113ef76e3 __CFRunLoopRun + 867
    16  CoreFoundation                      0x0000000113ef70f8 CFRunLoopRunSpecific + 488
    17  GraphicsServices                    0x00000001164bcad2 GSEventRunModal + 161
    18  UIKit                               0x00000001124d4f09 UIApplicationMain + 171
    19  Auyrma                              0x000000010e1c2d82 main + 114
    20  libdyld.dylib                       0x0000000114e8492d start + 1
    21  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

1.Please check target of your view controller and storyboard files should be in same target. 1.请检查视图控制器和故事板文件的目标应该在同一目标中。 2.select your xib and remove your class which is mapped to that storyboard and map it back and press enter once you paste your class your nib name keep same for testing. 2.选择您的xib并删除映射到该故事板的类并将其映射回来,并在粘贴您的类后按Enter键,您的笔尖名称保持相同以进行测试。 3.If this button is loading form custom view to view controller need to check that custom views are added to right target and re-map touch up inside with ibaction again. 3.如果此按钮正在加载表单自定义视图,则视图控制器需要检查自定义视图是否已添加到右目标,并再次使用ibaction重新映射内部。

This is what I could figure it out by see your conversations. 通过查看您的对话,我可以解决这个问题。

I have solved my problem this way: 我这样解决了我的问题:

  1. Open up the Utilites 打开Utilites
  2. Open the Identity Inspector 打开Identity Inspector
  3. Provide the class name again (however it was there already) 再次提供类名(但它已经存在)

It seems like it was a bug of Xcode... 好像这是Xcode的一个bug ...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用UIImagePickerController从照片库中访问相机 - Accessing camera from within the photo library with UIImagePickerController 迅速将UIImagePickerController呈现给照片库后崩溃4; 隐私已添加到info.plist - Crash after having presented UIImagePickerController to photo Library in swift 4 ; Privacy was added to info.plist 捕获照片UIImagePickerController后收到内存警告和崩溃 - Receiving Memory warning and crash after capturing photo UIImagePickerController UIImagePickerController 和照片库访问 - UIImagePickerController and photo library access 为什么我无法使用UIImagePickerController访问照片库 - Why I can't access photo library by using UIImagePickerController swift:如何在不使用UIImagePickerController的情况下从照片库加载照片? - swift: How to load photos from photo library without using UIImagePickerController? 如何使用 UIImagePickerController 从照片库中删除图像 - How to delete an image from photo library using UIImagePickerController uiimagepickercontroller视频时长 - 照片库 - uiimagepickercontroller video duration - photo library 启用UIImagePickerController上的照片库按钮 - Enabling the photo library button on the UIImagePickerController 访问iPhone照片库时,iOS Webview应用程序崩溃 - iOS webview app crash when accessing iPhone photo library
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM