I have some UILabels, titles and the like, whose text is determined programmatically at runtime. It would be nice to see something on the storyboard to indicate the label is there, and that that scene is expected to display, for example, username.
However, it seems disingenuous to add an unused string to the project, and I want to avoid the situation of deciding whether to localize dummy text. I found one approach with a user defined runtime attribute, Clear Label text used in Storyboard, that wouldn't avoid things turning up in MainStoryboard.strings localizations. This seems like overkill if there was a way to annotate the storyboard or otherwise mark a sample value...
What should one do in this situation? A) Live with empty labels on storyboard B) Refactor the project to create labels programmatically C) The solution at Clear Label text used in Storyboard D) Other