I just updated my ArcGis sdk to use sdk version 100.2.1.
Previously to get the layer name I was using
AGSFeatureLayer *featureLayer = (AGSFeatureLayer *) layer;
layerName = featureLayer.serviceLayerName
and now In the sdk 100.2.1 there is no parameter name
layerName = layer?.name
But it returning the different string
in 10.2.1 it is returing POI and in 100.2.1 it is returning Position Of Images
I have a backed loagic already implemented so is there any way to get the same service name in run time 100 ?