<!--
{
  "documentType" : "article",
  "framework" : "TVML",
  "identifier" : "/documentation/TVML/info",
  "metadataVersion" : "0.1.0",
  "role" : "collectionGroup",
  "title" : "info"
}
-->

# info

Displays grouped sets of information.

## Overview

The `info` element displays displays grouped sets of data in either table or list
form, depending on its parent element. For example, in an `infoList` element, the
`info` element is often used to display a list of directors and actors for a product.
Here’s an example that shows the director and main actors for a movie.

```xml
<infoList>
   <info>
      <header>
         <title>Director</title>
      </header>
      <text>John Appleseed</text>
   </info>
   <info>
      <header>
         <title>Actors</title>
      </header>
      <text>Anne Johnson</text>
      <text>Tom Clark</text>
      <text>Maria Ruiz</text>
   </info>
</infoList>
```

### Subelements of info

- [button](/documentation/TVML/button)
- [description](/documentation/TVML/description)
- [header](/documentation/TVML/header)
- [row](/documentation/TVML/row)
- [text](/documentation/TVML/text)

### Elements that Use info

- [infoList](/documentation/TVML/infolist)
- [infoTable](/documentation/TVML/infotable)

## Topics

### Valid TVML Styles

[tv-line-spacing](/documentation/TVML/tv-line-spacing)

Specifies the amount of space between lines of text.

### Valid TVML Attributes

[binding](/documentation/TVML/binding)

Associates information in a data item with an element.

[prototype](/documentation/TVML/prototype)

Associates a data item type with an element.

[theme](/documentation/TVML/theme)

Sets the color scheme for an element.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)