<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to retreive AGSFeatureTableLayer info from AGSFeature? in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427125#M3637</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if an instance of AGSFeatureTableLayer can be retrieved but it can certainly be created based on a gdb feature's table:&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeature&lt;/SPAN&gt;* gdbFeature = (&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeature&lt;/SPAN&gt;*)feature;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSFeatureTable&lt;/SPAN&gt; *featureTable = gdbFeature.&lt;SPAN style="color: #703daa;"&gt;table&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSFeatureTableLayer&lt;/SPAN&gt; *featureTableLayer = [[&lt;SPAN style="color: #703daa;"&gt;AGSFeatureTableLayer&lt;/SPAN&gt; &lt;SPAN style="color: #3d1d81;"&gt;alloc&lt;/SPAN&gt;]&lt;SPAN style="color: #3d1d81;"&gt;initWithFeatureTable&lt;/SPAN&gt;:featureTable];&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;To get the service url from a gdb feature:&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeatureTable&lt;/SPAN&gt; *gdbFeatureTable = (&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeatureTable&lt;/SPAN&gt; *)featureTable;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSGDBGeodatabase&lt;/SPAN&gt; *gdb = gdbFeatureTable.&lt;SPAN style="color: #703daa;"&gt;geodatabase&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;NSURL&lt;/SPAN&gt; *url = gdb.&lt;SPAN style="color: #703daa;"&gt;serviceURL&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;NSString&lt;/SPAN&gt; *urlString = [url &lt;SPAN style="color: #3d1d81;"&gt;absoluteString&lt;/SPAN&gt;];&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;Based on the difference of the URLs, I think you can tell which layer or featureTable you need to update upon...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Feb 2016 12:22:27 GMT</pubDate>
    <dc:creator>ShiminCai</dc:creator>
    <dc:date>2016-02-17T12:22:27Z</dc:date>
    <item>
      <title>How to retreive AGSFeatureTableLayer info from AGSFeature?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427122#M3634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On Clicking of feature on Map I receive call to the below delegate and also receive features as a argument.&amp;nbsp; Now I wanted to figure out these features belongs to which layer. Based on type of layer I have to do programmatically update other layer in the map. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- (void) mapView:(AGSMapView *)mapView didClickAtPoint:(CGPoint)screen mapPoint:(AGSPoint *)mappoint features:(NSDictionary *)features&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Awaiting for reply!! Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 09:23:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427122#M3634</guid>
      <dc:creator>DemoSurvey</dc:creator>
      <dc:date>2016-02-16T09:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to retreive AGSFeatureTableLayer info from AGSFeature?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427123#M3635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;- (void) mapView:(AGSMapView *)mapView didClickAtPoint:(CGPoint)screen mapPoint:(AGSPoint *)mappoint features:(NSDictionary *)features&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo; color: #4f8187;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NSMutableArray *tappedFeatures&lt;SPAN style="color: #000000;"&gt; = [[&lt;/SPAN&gt;&lt;SPAN style="color: #703daa;"&gt;NSMutableArray&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;alloc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;]&lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;init&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #703daa;"&gt;NSEnumerator&lt;/SPAN&gt;* keys = [features &lt;SPAN style="color: #3d1d81;"&gt;keyEnumerator&lt;/SPAN&gt;];&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #bb2ca2;"&gt;for&lt;/SPAN&gt; (&lt;SPAN style="color: #703daa;"&gt;NSString&lt;/SPAN&gt;* key &lt;SPAN style="color: #bb2ca2;"&gt;in&lt;/SPAN&gt; keys)&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [&lt;SPAN style="color: #4f8187;"&gt;tappedFeatures&lt;/SPAN&gt; &lt;SPAN style="color: #3d1d81;"&gt;addObjectsFromArray&lt;/SPAN&gt;:[features &lt;SPAN style="color: #3d1d81;"&gt;objectForKey&lt;/SPAN&gt;:key]];&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: Menlo; font-size: 11px; color: #703daa;"&gt;NSString&lt;/SPAN&gt;&lt;SPAN style="font-family: Menlo; font-size: 11px;"&gt;* layerName;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #bb2ca2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for &lt;/SPAN&gt;(&lt;SPAN style="color: #bb2ca2;"&gt;id&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #703daa;"&gt;AGSFeature&lt;/SPAN&gt;&amp;gt; feature &lt;SPAN style="color: #bb2ca2;"&gt;in&lt;/SPAN&gt; &lt;SPAN style="color: #4f8187;"&gt;tappedFeatures&lt;/SPAN&gt;)&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #bb2ca2;"&gt;if &lt;/SPAN&gt;([feature &lt;SPAN style="color: #3d1d81;"&gt;isKindOfClass&lt;/SPAN&gt;:[&lt;SPAN style="color: #703daa;"&gt;AGSGraphic&lt;/SPAN&gt; &lt;SPAN style="color: #3d1d81;"&gt;class&lt;/SPAN&gt;]])&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #703daa;"&gt;AGSGraphic&lt;/SPAN&gt;* graphic = (&lt;SPAN style="color: #703daa;"&gt;AGSGraphic&lt;/SPAN&gt;*)feature;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #703daa;"&gt;AGSFeatureLayer&lt;/SPAN&gt; *featureLayer = (&lt;SPAN style="color: #703daa;"&gt;AGSFeatureLayer&lt;/SPAN&gt; *)graphic.&lt;SPAN style="color: #703daa;"&gt;layer&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerName = graphic.&lt;SPAN style="color: #703daa;"&gt;layer&lt;/SPAN&gt;.&lt;SPAN style="color: #703daa;"&gt;name&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #bb2ca2;"&gt;else&lt;/SPAN&gt; &lt;SPAN style="color: #bb2ca2;"&gt;if&lt;/SPAN&gt; ([feature &lt;SPAN style="color: #3d1d81;"&gt;isKindOfClass&lt;/SPAN&gt;:[&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeature&lt;/SPAN&gt; &lt;SPAN style="color: #3d1d81;"&gt;class&lt;/SPAN&gt;]])&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #703daa;"&gt;AGSGDBFeature&lt;/SPAN&gt;* gdbFeature = (&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeature&lt;/SPAN&gt;*)feature;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #703daa;"&gt;AGSFeatureTable&lt;/SPAN&gt; *featureTable = gdbFeature.&lt;SPAN style="color: #703daa;"&gt;table&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerName = gdbFeature.&lt;SPAN style="color: #703daa;"&gt;table&lt;/SPAN&gt;.&lt;SPAN style="color: #3d1d81;"&gt;tableName&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;The layerName should tell which layer a feature belongs to... &lt;/SPAN&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Hope it helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Shimin&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 22:19:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427123#M3635</guid>
      <dc:creator>ShiminCai</dc:creator>
      <dc:date>2016-02-16T22:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to retreive AGSFeatureTableLayer info from AGSFeature?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427124#M3636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shimin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still is there a way to retrieve instance of AGSFeatureTableLayer&amp;nbsp; as in my case I have two layers in offline mode with same table name. So one layer is only in read only mode, but if user clicks on feature on layer and perform edit with read only mode layer , programmatically I have do the same changes in another layer which has both read and write mode. In short I am not allowed to do update data on read only mode layer.&amp;nbsp; So currently for both the layers there are two geodatabases only difference is in the URL even layer numbers&amp;nbsp; are same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Awaiting for reply..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2016 09:29:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427124#M3636</guid>
      <dc:creator>DemoSurvey</dc:creator>
      <dc:date>2016-02-17T09:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to retreive AGSFeatureTableLayer info from AGSFeature?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427125#M3637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if an instance of AGSFeatureTableLayer can be retrieved but it can certainly be created based on a gdb feature's table:&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeature&lt;/SPAN&gt;* gdbFeature = (&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeature&lt;/SPAN&gt;*)feature;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSFeatureTable&lt;/SPAN&gt; *featureTable = gdbFeature.&lt;SPAN style="color: #703daa;"&gt;table&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSFeatureTableLayer&lt;/SPAN&gt; *featureTableLayer = [[&lt;SPAN style="color: #703daa;"&gt;AGSFeatureTableLayer&lt;/SPAN&gt; &lt;SPAN style="color: #3d1d81;"&gt;alloc&lt;/SPAN&gt;]&lt;SPAN style="color: #3d1d81;"&gt;initWithFeatureTable&lt;/SPAN&gt;:featureTable];&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;To get the service url from a gdb feature:&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeatureTable&lt;/SPAN&gt; *gdbFeatureTable = (&lt;SPAN style="color: #703daa;"&gt;AGSGDBFeatureTable&lt;/SPAN&gt; *)featureTable;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;AGSGDBGeodatabase&lt;/SPAN&gt; *gdb = gdbFeatureTable.&lt;SPAN style="color: #703daa;"&gt;geodatabase&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;NSURL&lt;/SPAN&gt; *url = gdb.&lt;SPAN style="color: #703daa;"&gt;serviceURL&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;SPAN style="color: #703daa;"&gt;NSString&lt;/SPAN&gt; *urlString = [url &lt;SPAN style="color: #3d1d81;"&gt;absoluteString&lt;/SPAN&gt;];&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;Based on the difference of the URLs, I think you can tell which layer or featureTable you need to update upon...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2016 12:22:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427125#M3637</guid>
      <dc:creator>ShiminCai</dc:creator>
      <dc:date>2016-02-17T12:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to retreive AGSFeatureTableLayer info from AGSFeature?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427126#M3638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, gdbFeature.table.tableName doesn't have to be the same as the layer name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;-(&lt;SPAN style="color: #bb2ca2;"&gt;void&lt;/SPAN&gt;)mapView:(&lt;SPAN style="color: #703daa;"&gt;AGSMapView&lt;/SPAN&gt; *)mapView didClickAtPoint:(&lt;SPAN style="color: #703daa;"&gt;CGPoint&lt;/SPAN&gt;)screen mapPoint:(&lt;SPAN style="color: #703daa;"&gt;AGSPoint&lt;/SPAN&gt; *)mappoint features:(&lt;SPAN style="color: #703daa;"&gt;NSDictionary&lt;/SPAN&gt; *)features {&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #bb2ca2;"&gt;for&lt;/SPAN&gt; (&lt;SPAN style="color: #703daa;"&gt;NSString&lt;/SPAN&gt; *layerName &lt;SPAN style="color: #bb2ca2;"&gt;in&lt;/SPAN&gt; features.&lt;SPAN style="color: #703daa;"&gt;allKeys&lt;/SPAN&gt;) {&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #703daa;"&gt;AGSLayer&lt;/SPAN&gt; *layer = [mapView &lt;SPAN style="color: #3d1d81;"&gt;mapLayerForName&lt;/SPAN&gt;:layerName];&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #bb2ca2;"&gt;for&lt;/SPAN&gt; (&lt;SPAN style="color: #bb2ca2;"&gt;id&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #703daa;"&gt;AGSFeature&lt;/SPAN&gt;&amp;gt; feature &lt;SPAN style="color: #bb2ca2;"&gt;in&lt;/SPAN&gt; features[layerName]) {&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo; color: #d12f1b;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;NSLog&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;@"Feature %@ belongs to layer %@ (named '%@')."&lt;SPAN style="color: #000000;"&gt;, feature, layer, layerName);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Menlo;"&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You get the layer from the map based off the layer name that's passed in its the features dictionary. If you want, you can then detect that this is an AGSFeatureTableLayer and get the table. As you mentioned, the same table can drive multiple layers, but each layer can only have one source table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nick.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 19:21:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427126#M3638</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2016-02-18T19:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to retreive AGSFeatureTableLayer info from AGSFeature?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427127#M3639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Shimin and Nicholas for comments. Currently I have tried Shimin suggestion I will look into Nicholas comment too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2016 07:41:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427127#M3639</guid>
      <dc:creator>Survey83Demo</dc:creator>
      <dc:date>2016-02-26T07:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to retreive AGSFeatureTableLayer info from AGSFeature?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427128#M3640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/23123"&gt;Shimin Cai&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea to accomplish this identify process and differentiate the graphic and feature in arcgis version 100?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have some feature layer and asset layer, both were added in mapview's operational layer. But i can fetch only features, not assets.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 15:03:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427128#M3640</guid>
      <dc:creator>MuruganandhamKuppan1</dc:creator>
      <dc:date>2018-04-06T15:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to retreive AGSFeatureTableLayer info from AGSFeature?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427129#M3641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you give me some more details please? It&amp;nbsp;seems like you might be asking a different question to the one &lt;A href="https://community.esri.com/migrated-users/23123"&gt;Shimin&amp;nbsp;&lt;/A&gt;&amp;nbsp;was asking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Runtime 100, AGSGraphicsOverlays are added to the AGSMapView.graphicsOverlays collection and are always displayed over operational layers. Layers (e.g. Feature Layers) are added to the AGSMap.operationalLayers collection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are likewise now two groups of identify methods on AGSMapView (actually, AGSGeoView since they apply to both MapView and SceneView):&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;identifyGraphicsOverlay(s)&lt;/LI&gt;&lt;LI&gt;identifyLayer(s)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See them listed &lt;A href="https://developers.arcgis.com/ios/latest/api-reference/interface_a_g_s_geo_view.html"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to identify Graphics, use the identifyGraphicsOverlay(s) methods. If you need to identify Features, use the identifyLayer(s) methods.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 18:06:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/how-to-retreive-agsfeaturetablelayer-info-from/m-p/427129#M3641</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2018-04-06T18:06:47Z</dc:date>
    </item>
  </channel>
</rss>

