Localization of iOS 7 layout with Labels attributes

I create my String-Files using ibtool from my base storyboard for all my languages ​​... For some reason, ibtool does not retrieve UILabel with the attribute style ...

I don't have a Key / Value pair for these shortcuts ... Does anyone know why ?!

+6
source share
1 answer

In conclusion, I came to the conclusion that this cannot be done with ibtool in the current version.

Instead, I let Textview be an open text view and, using my subclass, parse its text property so that I can make NSMutableAttributedString and set the necessary properties.

This allowed me to use ibtool to extract the rows and still have the textview attribute.

Localizing the UITextView attribute from the storyboard

0
source

All Articles