Inheritance: FormFieldTableViewCell
Esempio n. 1
0
 void EndLocationLookupForCell(LocationFieldTableViewCell cell)
 {
     cell.LatitudeField.Enabled  = true;
     cell.LongitudeField.Enabled = true;
     cell.LookUpButton.Enabled   = true;
     cell.Spinner.StopAnimating();
 }
Esempio n. 2
0
        void RequestLocationForCell(LocationFieldTableViewCell cell)
        {
            LocationManager.DesiredAccuracy = CLLocation.AccuracyThreeKilometers;
            LocationManager.RequestLocation();

            cell.LatitudeField.Enabled  = false;
            cell.LongitudeField.Enabled = false;

            cell.Spinner.StartAnimating();
            cell.Spinner.LayoutIfNeeded();
        }