2

I am trying to present my ViewController with UIModalTransitionStylePartialCurl transition. I am using the following code

PuzzleViewController *vc = [[PuzzleViewController alloc] init];
vc.modalTransitionStyle = UIModalTransitionStylePartialCurl;
vc.puzzleImage = imageView.image;
[self.navigationController presentViewController:vc animated:YES completion:nil];

UIModalTransitionStylePartialCurl work fine with iOS 7, like this

enter image description here

But for iOS 8, the visual part of the previous view on top disappear, so the user can't understand that he can click on the top left corner to back to previous view.

enter image description here

So is there a way to fix this on iOS 8?

narner
  • 2,908
  • 3
  • 26
  • 63
sazz
  • 3,193
  • 3
  • 23
  • 33
  • Getting the navigation controller to present the VC seems a bit odd, what if you get the VC the code is in to present it instead? – Gary Riches Feb 06 '15 at 14:50
  • You mean what if I do like this to present the VC? [self presentViewController:vc animated:YES completion:nil]; I tried it but still the same problem. – sazz Feb 06 '15 at 14:56
  • Looking at some other posts, this seems to be an issue with Xcode 6, if done in Xcode 5 it works: http://stackoverflow.com/questions/27596762/uimodaltransitionstylepartialcurl-not-working-on-ios-8 – Gary Riches Feb 06 '15 at 14:58
  • Did you found any solution for it? I am also facing same problem.. – Sachin Siwal Apr 23 '15 at 14:03
  • unfortunately not yet – sazz Apr 29 '15 at 09:57
  • possible duplicate of [ios8 UIModalTransitionStylePartialCurl doesn't work properly](http://stackoverflow.com/questions/25927199/ios8-uimodaltransitionstylepartialcurl-doesnt-work-properly) – alpere Aug 26 '15 at 14:47

1 Answers1

0

This is broken in iOS 8 and Xcode 6. Here is the Radar for it: http://www.openradar.me/18305611

This ticket was closed as a duplicate and I can't find the other, but it's there.

Gary Riches
  • 2,847
  • 1
  • 22
  • 19