When I quickly pan and/or zoom out of my application after saving attributes of a feature, the feature layer crashes with this error:
[AGSFeatureLayer ags_removeAllUnselectedServerGraphics]
My initial guess would be a threading error. Saving attributes is called with the following:
[self performSelectorOnMainThread:@selector(commitNewFeature)
withObject:newPopup
waitUntilDone:YES];
Maybe this thread has not completely finished and featureLayer is conflicting with a synchronous call? I can't seem to narrow down the problem. Any input on either the error message or threading issues would be appreciated. Thanks!