Solved! Go to Solution.
Hello André,
The OfflineFeatureEditing functionality must require ArcGISOnline or ArcGIS for Server later than version 10.2.1 to enable the sync feature services. Once a service publishes, use it to generate geodatabases for offline editing using an ArcGIS Runtime application.
Here I attach two related pages as references:
Create an offline map:
https://developers.arcgis.com/ios/guide/create-an-offline-map.htm
Preparing data for offline use:
http://resources.arcgis.com/en/help/main/10.2/index.html#//0154000006m1000000
Hi,
Probably now ESRI does not encourage using the offline capability prior to ArcGIS 10.2 but I started doing offline editing in my app from ArcGIS 10.1 and ESRI iOS SDK 10.1.1. It worked fine in 10.1 and was just recently migrated to 10.2.1...
The 10.1 offline editing was based on the ESRI OnlineOfflineEditingSample at the 10.1 time. The sample couldn't be found anymore in the ESRI sample site. So I dug it out from my computer and put a copy in the Dropbox: https://www.dropbox.com/s/10pe58o4hnsfcys/OnlineOfflineEditingSample.zip. (I'm hoping I'm not offending ESRI by doing this...)
Basically in this sample, when going offline, it uses a custom class OnlineOfflineFeatureLayer, FeatureLayerDefinition.json, FeatureSet.json to save feature layer definition and features to device and reload the layers and features offline using the json files. It also uses the json files to send local edits to the server when going online... There is a bug showing offline features in this sample and the solution can be found in this thread: http://forums.arcgis.com/threads/81574-Online-Offline-Editing-Sample
Hope it helps.
Shimin