<?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: Feature Layer Editing in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549696#M4712</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Nimesh,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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; I have one more question added to this table editing. I am looping through the query results and then creating a new features for table editing (attribute only, no geometry) from query each feature. Then I want to add this new feature one at a time to empty featureSet, how can I do that. I couldn't find a way to add new features to empty featureSet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Really appreciate help on this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Vikrant&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;If you are satisfied with answer then please mark thread as answered.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Nimesh&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Oct 2012 14:16:26 GMT</pubDate>
    <dc:creator>VIKRANTKRISHNA</dc:creator>
    <dc:date>2012-10-01T14:16:26Z</dc:date>
    <item>
      <title>Feature Layer Editing</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549691#M4707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The Feature Layer Editing sample shows editing of layers from the webmap. How can do the editing (adding/deletingattributes) in the popup for the layers which are not part of arcgis.com webmap. Specifically, the statement in the method didClickCalloutAccessoryButtonForGraphic()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;self.popupVC = [[[AGSpopupsContanerViewController alloc] &lt;/SPAN&gt;&lt;STRONG&gt;initWithWebMap:self.webmap&lt;/STRONG&gt;&lt;SPAN&gt; forFeature:graphic usingNavigationControllerStsck:NO autorelese];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;what do I pass instead of initWithWebMap&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 18:14:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549691#M4707</guid>
      <dc:creator>VIKRANTKRISHNA</dc:creator>
      <dc:date>2012-09-17T18:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer Editing</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549692#M4708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You should do it like this...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;AGSPopupInfo *popupInfo = [AGSPopupInfo popupInfoForGraphic:graphic];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AGSPopup *popup = [AGSPopup popupWithGraphic:graphic popupInfo:popupInfo];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;self.popupVC = [[[AGSPopupsContainerViewController alloc]initWithPopups:[NSArray arrayWithObject:popup]]autorelease]; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 15:24:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549692#M4708</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-09-18T15:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer Editing</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549693#M4709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;You should do it like this...&lt;BR /&gt;&lt;BR /&gt;AGSPopupInfo *popupInfo = [AGSPopupInfo popupInfoForGraphic:graphic];&lt;BR /&gt;AGSPopup *popup = [AGSPopup popupWithGraphic:graphic popupInfo:popupInfo];&lt;BR /&gt;self.popupVC = [[[AGSPopupsContainerViewController alloc]initWithPopups:[NSArray arrayWithObject:popup]]autorelease]; &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Nimesh&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!! that works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Also is it possible to edit a table in the feature service (not related table)?. I need to add records to a table in the feature service based on selection on the map.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 20:08:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549693#M4709</guid>
      <dc:creator>VIKRANTKRISHNA</dc:creator>
      <dc:date>2012-09-18T20:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer Editing</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549694#M4710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Great! Yes, you can add records to the table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 20:28:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549694#M4710</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-09-18T20:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer Editing</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549695#M4711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are satisfied with answer then please mark thread as answered.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2012 20:02:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549695#M4711</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-09-21T20:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer Editing</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549696#M4712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Nimesh,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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; I have one more question added to this table editing. I am looping through the query results and then creating a new features for table editing (attribute only, no geometry) from query each feature. Then I want to add this new feature one at a time to empty featureSet, how can I do that. I couldn't find a way to add new features to empty featureSet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Really appreciate help on this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Vikrant&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;If you are satisfied with answer then please mark thread as answered.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Nimesh&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2012 14:16:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549696#M4712</guid>
      <dc:creator>VIKRANTKRISHNA</dc:creator>
      <dc:date>2012-10-01T14:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Layer Editing</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549697#M4713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You should use NSMutableArray to store your features (one by one) and when you are done with adding all the features, you should use AGSFeatureSet's featureSetWithFeatures to create a feature set and pass the array of features.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2012 15:27:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-layer-editing/m-p/549697#M4713</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-10-01T15:27:16Z</dc:date>
    </item>
  </channel>
</rss>

