When displaying Bible text, always display the Bible version's copyright attribution in accordance with its license agreement.
Views that handle attribution for you
The following views fetch and display attribution with the passage — no extra work is required:
BibleCardViewBibleReaderView
Both views prefer the version's brief copyright value and fall back to promotionalContent when the brief value is unavailable.
If attribution matters for your screen and you do not need a custom layout, prefer one of these views.
Displaying attribution yourself
BibleTextView gives you full control over layout and does not display the passage reference, Bible version, or copyright. When you use it, you are responsible for displaying appropriate attribution.
Fetch the BibleVersion with YouVersionAPI.Bible.version(withId:) and render its copyright near the passage, falling back to promotionalContent when needed. The example waits for the metadata request before showing the passage so the text is never displayed without its attribution lookup having completed.
AttributedPassageView.swift
The BibleVersion metadata provides two related fields:
copyright— brief attribution to display near the verses.promotionalContent— a fuller copyright or publisher notice, suitable for a version-details, settings, or about screen and used as the nearby attribution fallback whencopyrightis unavailable.
Some public-domain versions may not provide copyright text. Treat a successful response with a missing field differently from a failed metadata request.