Partial Curl transition for modal seque in iOS 8

前端 未结 6 844
误落风尘
误落风尘 2020-12-29 08:51

I created simple app with two VCs.
I open second VC from first via button. Seque is \"Present Modally\" and transition is \"Partion Curl\". This scheme works fine on iOS

6条回答
  •  悲&欢浪女
    2020-12-29 09:11

    I have the same problem. I saw it in Xcode 6 (beta 7) + iOS 8 (beta 5). Still present in GM seed of both.

    iOS 7.1 Specifics:

    It is called a "partial curl" and on iOS 7 it displays as such (e.g. Partial - you can still see a portion of the originating view along the top of the window). On iOS 7 - when you tap on this partially exposed, "original" view, the view unwindes back to the full window of the origional.

    iOS 8 Specifics:

    The segue does NOT leave any of the original showing. And any tap, anywhere on the window/screen, returns the originating view via an automatic unwind. If you have a UITextField on the view, when you tap on it to enter a value … the originating view returns without triggering any of the associated UITextField methods. No keyboard is displayed, it simply unwinds to the originating view.

    It appears to me, that touch definition associated with what should be a partially displayed corner of the original view is instead mis-defined as the entire window.

    Of course, I'm very new to iOS programming, so my insight, if accurate, does not give me a clue as to how to workaround it! LOL I'm hoping that someone out there will have the knowledge to at least provide a usable workaround.

    Jim

    P.S. I don't yet have enough reputation points to vote or comment, hence my answer that isn't an answer.

提交回复
热议问题