Skip to content

Instantly share code, notes, and snippets.

public static class Extensions
{
public static UIView FirstResponder (this UIView view)
{
if (view.IsFirstResponder)
return view;
foreach (var child in view.Subviews)
{
var fs = child.FirstResponder ();
if (fs != null)