CooperRS / RMPickerViewController

This is an iOS control for selecting something using UIPickerView in an UIAlertController like manner
MIT License
381 stars 51 forks source link

Interactive pop gesture of UINavigationController active while RMPickerViewController shown #9

Closed CooperRS closed 10 years ago

CooperRS commented 10 years ago

Instead of using custom modal transitions I will try a UIWindow based approach

CooperRS commented 10 years ago

@pronebird: Do you know whether the other HUD libraries support rotation while the HUD is shown (so while the additional UIWindow is visible)?

pronebird commented 10 years ago

SVProgressHUD supports for example: https://github.com/TransitApp/SVProgressHUD/blob/master/SVProgressHUD/SVProgressHUD.m#L348

They catch Statusbar rotation notification and rotate HUD via view.transform.

CooperRS commented 10 years ago

My problem was that UIWindow adds a black background view while rotating. I found a workaround by handling the rotation myself and I wanted to compare. SVProgressHUD seems to have a more complex solution than I do.

CooperRS commented 10 years ago

Should be solved by f4c8338

@pronebird: Could you please verify? It may also fix #8...

pronebird commented 10 years ago

It works. Rotation works just fine too.

CooperRS commented 10 years ago

Thanks! I will close this ticket...