标签:
ios的学习在蓝懿另个月了,感觉学到了很多,这里的环境不错学习氛围也很好,刘国斌老师教了图片编辑,模拟美图秀秀,功能实现了边框,效果。滤镜,还有涂鸦。
#pragma mark - Image picker controller 协议方法
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info{
/***** 初始化并跳转到 Editing view controller *****/
// 进入 Storyboard 问价内, 获取到某个 View Controller (initWithCoder 初始化方法)
// 后面的 id 是在 Storyboard 中设置的 "Storyboard ID"//
// ______如果是用纯代码方式写出来的,就不用这样,直接alloc,init初始化
bianJi_bViewController *bian=[self.storyboardinstantiateViewControllerWithIdentifier:@"hehe"];
bian.selectedImage=info[UIImagePickerControllerOriginalImage];
// 因为当前 View controller 没有被导航栏所管理, 所以无法使用 self.navigationController 来跳转页面. 但由于 UIImagePickerController 是导航控制器的子类, 所以可以直接使用UIImagePickerController 的实力对象来跳转页面(即 picker 参数)
[picker presentViewController:bian animated:YES completion:nil];
}
标签:
原文地址:http://www.cnblogs.com/lanyisanqqi/p/5152595.html