QuintGao / GKNavigationBarViewController

iOS自定义导航栏-导航栏联动
https://www.jianshu.com/p/577755d0d69a
MIT License
727 stars 130 forks source link

UIImagePickerController #2

Closed yulingyiyi closed 7 years ago

yulingyiyi commented 7 years ago

UIImagePickerController 调用相机代理方法回调不了?

QuintGao commented 7 years ago

这应该是系统的问题,你这样试试 [self presentViewController:pickerVC animated:YES completion:^{ pickerVC.delegate = self; }];

yulingyiyi commented 7 years ago

thanks