คำถามติดแท็ก presentviewcontroller

5
ข้อผิดพลาด iOS 10 [การเข้าถึง] <private> เมื่อใช้ UIImagePickerController
ฉันใช้ XCode 8 และทดสอบกับ iOS 10.2 Beta ฉันได้เพิ่มกรอบรูป PhotosUI และ MobileCoreServices ลงในโครงการแล้ว รหัสง่ายมาก: #import &lt;Photos/Photos.h&gt; #import &lt;PhotosUI/PhotosUI.h&gt; #import &lt;MobileCoreServices/MobileCoreServices.h&gt; @interface ViewController : UIViewController &lt;UIImagePickerControllerDelegate, UINavigationControllerDelegate, PHLivePhotoViewDelegate&gt; @property (strong, nonatomic) IBOutlet UIImageView *imageview; @end และการใช้งาน: - (IBAction)grab:(UIButton *)sender{ UIImagePickerController *picker = [[UIImagePickerController alloc]init]; picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; picker.allowsEditing = NO; picker.delegate = …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.