Example #1
0
			public override void RowSelected (UITableView tableView, NSIndexPath indexPath)
			{
				if (!enabled)
					return;
				
				if (indexPath.Section == 0) {
					if (indexPath.Row == 0) {
						//Give type "focus"
						type.BecomeFirstResponder ();
					} else {
						//Give hours "focus"
						hours.BecomeFirstResponder ();
					}
				} else {
					//Give description "focus"
					description.BecomeFirstResponder ();
				}
			}