我已經爲call gallery視圖創建了mainview。如何解除多個視圖控制器
在此代碼中創建主視圖和調用庫視圖。
GalleryView *GalView=(GalleryView *)[self.storyboard instantiateViewControllerWithIdentifier:@"SBGallery"];
[self presentViewController:GalView animated:YES completion:nil];
選擇圖庫中的照片後查看並調用裁切照片此代碼。
CropView *CropView=(CropView *)[self.storyboard instantiateViewControllerWithIdentifier:@"SBCrop"];
[self presentViewController:CropView animated:YES completion:nil];
如何關閉cropview和GOTO MAINVIEW(在單一方法密切cropview和圖庫視圖)??
感謝您的提前。
你怎麼能已經出現控制器目前的第二個視圖控制器這樣的方法? – Lion