Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public static class NameItAsYouLike {
  2. public static UIViewController GetController(this UIView view)
  3. {
  4. UIResponder parent = view;
  5. while (parent != null) {
  6. parent = parent.NextResponder;
  7. if (parent is UIViewController) {
  8. return parent as UIViewController;
  9. }
  10. }
  11. return null;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement