<?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: EnableLabels on feature layer crashes iOS 9.3 in ArcGIS AppStudio Questions</title>
    <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832752#M2300</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Shobana you were right. I confirmed that I am using 32 bit Soc 4th gen iPad. I need to find one and test with a 64 bit iOS device and I'll let you know. Thanks for your patience. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2016 18:07:38 GMT</pubDate>
    <dc:creator>nakulmanocha</dc:creator>
    <dc:date>2016-07-12T18:07:38Z</dc:date>
    <item>
      <title>EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832745#M2293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am wondering if anyone else can replicate this crash? From what I can see, it seems to have appeared since the AppStudio upgrade to 1.2. The code below works on a desktop PC, and used to work on iPads (running up to 9.3 that I'm aware of), but new builds from AppStudio 1.2 crash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem appears to the 'enableLabels' line in the featurelayer which, if set to true, crashes the app when running on iOS 9.3.2 (tested on iPad and iPhone 6).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can replicate, please let me know, and if you can think of a workaround - this could be a major problem if labeling if suddenly not usable on iOS devices!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import QtQuick 2.3&lt;/P&gt;&lt;P&gt;import ArcGIS.AppFramework 1.0&lt;/P&gt;&lt;P&gt;import ArcGIS.AppFramework.Runtime 1.0&lt;/P&gt;&lt;P&gt;App {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; id: app&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 800&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 532&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GeodatabaseFeatureServiceTable {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id: featureServiceTable&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url: "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fsampleserver3.arcgisonline.com%2FArcGIS%2Frest%2Fservices%2FBloomfieldHillsMichigan%2FLandusePlanning%2FFeatureServer%2F2" rel="nofollow" target="_blank"&gt;http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/BloomfieldHillsMichigan/LandusePlanning/FeatureServer/2&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Map {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id: map&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchors.fill: parent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; focus: true&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ArcGISTiledMapServiceLayer {&amp;nbsp; url: "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fservices.arcgisonline.com%2FArcGIS%2Frest%2Fservices%2FWorld_Street_Map%2FMapServer" rel="nofollow" target="_blank"&gt;http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer&lt;/A&gt;&lt;SPAN&gt;"&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureLayer {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enableLabels: true;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureTable: featureServiceTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;PRE class="jive-pre"&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2016 02:15:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832745#M2293</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-07-11T02:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832746#M2294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested the following code on iPad with iOS 9.3.2 and I was not able to reproduce the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import QtQuick.Controls 1.2&lt;/P&gt;&lt;P&gt;import QtQuick 2.3&lt;/P&gt;&lt;P&gt;import ArcGIS.AppFramework 1.0&lt;/P&gt;&lt;P&gt;import ArcGIS.AppFramework.Runtime 1.0&lt;/P&gt;&lt;P&gt;App {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; id: app&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 800&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 532&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GeodatabaseFeatureServiceTable {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id: featureServiceTable&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url: "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FWildfire%2FMapServer%2F0" rel="nofollow" target="_blank"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/MapServer/0&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Map {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id: map&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchors.fill: parent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; focus: true&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ArcGISTiledMapServiceLayer {&amp;nbsp; url: "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fservices.arcgisonline.com%2FArcGIS%2Frest%2Fservices%2FWorld_Street_Map%2FMapServer" rel="nofollow" target="_blank"&gt;http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer&lt;/A&gt;&lt;SPAN&gt;"&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureLayer {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enableLabels: true;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureTable: featureServiceTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2016 16:07:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832746#M2294</guid>
      <dc:creator>nakulmanocha</dc:creator>
      <dc:date>2016-07-11T16:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832747#M2295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nakul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. Could you please test again using the same feature service I did? e.g. you used a map service, whereas I used a featureservice with labels. I posted that code because it is a small snippet that is easy to test, however, the real issue for me was that the crash also occurs when the featuretable is pointing to an offline runtime geodatabase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know how you get on with the feature service for starters...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;-Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2016 20:03:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832747#M2295</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-07-11T20:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832748#M2296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your featureservice I couldn't find any features. But I tested with this feature service and it worked fine. Can you please test with this one? This one is also feature Service layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0" title="http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0"&gt;Layer: Wildfire Response Points (ID: 0)&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 00:30:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832748#M2296</guid>
      <dc:creator>nakulmanocha</dc:creator>
      <dc:date>2016-07-12T00:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832749#M2297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nakul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Tested using that feature service and it crashed. Can send you app logs if you like. email me &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:paul@gpsit.co.nz"&gt;paul@gpsit.co.nz&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 02:46:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832749#M2297</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-07-12T02:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832750#M2298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does the crash occur on both 32bit and 64bit iOS devices? It is possible that the crash occurs only on 64bit iOS devices. And, Nakul might be using a 32bit iPad. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://blakespot.com/ios_device_specifications_grid.html" title="http://blakespot.com/ios_device_specifications_grid.html"&gt;Blake's iOS Device Specification Grid&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shobana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 05:46:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832750#M2298</guid>
      <dc:creator>ShobanaSuresh</dc:creator>
      <dc:date>2016-07-12T05:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832751#M2299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shobana - I hadn't thought of that. I'm testing on an iPad Air 2 (model MGHY2X/A) and iPhone 6 which are both 64bit from what I've looked up. I'll ask around the office if we have any 32bit iOS devices I can test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nakul - can you clarify what iPad/device you are testing on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keen to hear from anyone else out there who can test too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;-Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:10:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832751#M2299</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-07-12T08:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832752#M2300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Shobana you were right. I confirmed that I am using 32 bit Soc 4th gen iPad. I need to find one and test with a 64 bit iOS device and I'll let you know. Thanks for your patience. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 18:07:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832752#M2300</guid>
      <dc:creator>nakulmanocha</dc:creator>
      <dc:date>2016-07-12T18:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832753#M2301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AppStudio 1.2 uses Qt5.6.0 on the Cloud Make Build servers. Qt5.5.1 was used in AppStudio 1.1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The crash that you are seeing(with Qt5.6.0) sounds similar to an iOS crash issue that was fixed in the Runtime API and included in AppStudio 1.2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ArcGIS Runtime team is now aware of this issue. Would you please open a Tech Support incident for this so that it can tracked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shobana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cc: &lt;A href="https://community.esri.com/migrated-users/15508"&gt;Nakul Manocha&lt;/A&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2016 00:58:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832753#M2301</guid>
      <dc:creator>ShobanaSuresh</dc:creator>
      <dc:date>2016-07-13T00:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832754#M2302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica',sans-serif; color: #666666;"&gt;Hi Shobana&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica',sans-serif; color: #666666;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica',sans-serif; color: #666666;"&gt;I have sent a support request through to our NZ Esri distributor and asked them to prioritize it (we have critical app updates pending to deploy that we can't until this is resolved.)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica',sans-serif; color: #666666;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica',sans-serif; color: #666666;"&gt;If there's anything further I can do to help please let me know, else I'll wait to hear...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica',sans-serif; color: #666666;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica',sans-serif; color: #666666;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica',sans-serif; color: #666666;"&gt;-Paul&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2016 21:00:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832754#M2302</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-07-13T21:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832755#M2303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I was able to reproduce the issue in 64 bit iphone 6. I am going to log this as a defect and send you the bug id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Nakul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2016 21:02:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832755#M2303</guid>
      <dc:creator>nakulmanocha</dc:creator>
      <dc:date>2016-07-13T21:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832756#M2304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nakul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea if this is likely to be able to be fixed at the build end of things or will it require a change to the AppStudio application itself? i.e. I'm guessing that a fix at the build server end could happen anytime, but a patch/update for the application would be much slower to be made available. Obviously I'm anxious to get a resolution asap &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;-Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2016 21:10:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832756#M2304</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-07-13T21:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832757#M2305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, this issue can be fixed at the build end as the fix is required only in ArcGIS Runtime libraries. No change is required in AppStudio application. We will do our best to resolve this issue soon. Sorry for the inconvenience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shobana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 00:02:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832757#M2305</guid>
      <dc:creator>ShobanaSuresh</dc:creator>
      <dc:date>2016-07-14T00:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832758#M2306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great - thanks for letting me know Shobana, I'll wait to hear more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 00:08:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832758#M2306</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-07-14T00:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: EnableLabels on feature layer crashes iOS 9.3</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832759#M2307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI- I have logged this as an official defect &lt;SPAN style="color: #1f497d; text-indent: 0px;"&gt;#BUG-000097758&lt;SPAN class="Apple-converted-space"&gt; -&lt;SPAN style="font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;Enabling Labels on a feature layer causes&lt;BR /&gt;application to crash on 64bit iOS devices &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 00:12:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/enablelabels-on-feature-layer-crashes-ios-9-3/m-p/832759#M2307</guid>
      <dc:creator>nakulmanocha</dc:creator>
      <dc:date>2016-07-14T00:12:13Z</dc:date>
    </item>
  </channel>
</rss>

