0

I am working on my current iPhone audio app to be supported in CarPlay. But I am not able to show multiple tabs.

1 Answers1

3

To specify that you want tabs, you have to edit the plist of your app, adding the key UIBrowsableContentSupportsSectionedBrowsing:

<key>UIBrowsableContentSupportsSectionedBrowsing</key>
<true/>

The first layer of indices / items you return via the MPPlayableItemsDataSource will then be interpreted as source indices / items for tabs, as opposed to items on the top level.

DrMickeyLauer
  • 4,455
  • 3
  • 31
  • 67