<?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: TableView within a Custom Callout in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3162#M33</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi I am also trying to create something similar, I have a custom callout view which has a tableview. On clicking the pin, table view shows up but I cannot scroll the tableView. How did you get your tableView scrolling? Appreciate your help&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ekta&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jul 2013 20:00:57 GMT</pubDate>
    <dc:creator>EktaAgrawal</dc:creator>
    <dc:date>2013-07-26T20:00:57Z</dc:date>
    <item>
      <title>TableView within a Custom Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3159#M30</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've created a custom callout view that shows when the map is clicked.&amp;nbsp; I've populated an array of graphics (features) that were under that click, and would like to show them in a small, manicured TableView within the callout.&amp;nbsp; I'm having trouble getting the table view to even show.&amp;nbsp; I've tested my table view outside of the callout, so I know it works.&amp;nbsp; Once it's thrown into the callout, it will not show.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've found that I can show other components within the callout: picker, date picker, a list of buttons, etc.&amp;nbsp; But, for some reason the table view won't show.&amp;nbsp; It also looks like the map view takes input precedent over any items within the callout (except buttons).&amp;nbsp; So, it would appear that scrolling a picker or table view within the callout would be out of the question (the map would scroll instead).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ideally, I'd like the user to click the map, see a list of objects under their finger, click the object they actually wanted to select, highlight that graphic on the map, then allow them to click an accessory button to proceed with the workflow.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for my long-winded post &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2012 17:17:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3159#M30</guid>
      <dc:creator>DonSusini</dc:creator>
      <dc:date>2012-03-13T17:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: TableView within a Custom Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3160#M31</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, so I think I figured out the issue I was having.&amp;nbsp; When creating the custom view for the callout in Xcode, I had fit everything into the width I wanted the callout to be (about 200px wide to be exact).&amp;nbsp; This worked fine for buttons, text and everything else; but for the table view, it was being scaled down to nothing.&amp;nbsp; Once I stretched the table view to take up the entire view, everything looked correct inside the callout.&amp;nbsp; Whatever the default scaling settings of the table view were, they were messing up its final size.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All looks good now :cool:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2012 21:33:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3160#M31</guid>
      <dc:creator>DonSusini</dc:creator>
      <dc:date>2012-03-13T21:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: TableView within a Custom Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3161#M32</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, I am trying to do something similar to what you've done. Can you share your callout code please?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 07:10:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3161#M32</guid>
      <dc:creator>BernardNtiamoah</dc:creator>
      <dc:date>2012-04-25T07:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: TableView within a Custom Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3162#M33</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi I am also trying to create something similar, I have a custom callout view which has a tableview. On clicking the pin, table view shows up but I cannot scroll the tableView. How did you get your tableView scrolling? Appreciate your help&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ekta&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 20:00:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/tableview-within-a-custom-callout/m-p/3162#M33</guid>
      <dc:creator>EktaAgrawal</dc:creator>
      <dc:date>2013-07-26T20:00:57Z</dc:date>
    </item>
  </channel>
</rss>

