I'd like to move the location of the EditingAccessoryView in my cell. I've tried the following with no success:
UIActivityIndicatorView activityIndicator = new UIActivityIndicatorView(UIActivityIndicatorViewStyle.Gray);
activityIndicator.Frame.X = 227f;
cell.EditingAccessoryView = activityIndicator;
I'm doing this in the GetCell method.
Any thoughts would be appreciated.
Thanks, Rick