How do I specify a multiline title in an iOS Settings bundle?

ios, iphone, settings.bundle

Solution

No, you have very little control over the Settings.bundle and a multiline title is not an option. Best thing to do would be to cut down the cell title and create a group title, or group footer.

Problem

I have added a Settings.bundle to my iOS application. One of my settings is a toggle switch with a long title. This title is getting truncated. I have tried: - "My Superlong\nTitle" - "My Superlong`
`Title" but neither worked: \n and `&#xA` were displayed as part of the Title. Is it possible to have a line break/newline in my title? Thanks!

Original source