6

I am generating my String- Files with ibtool from my Base Storyboard for all my languages...For some reason ibtool is not extracting UILabels with style "attributed"...

I have no Key/Value Pair for those labels...Does somebody has a clue why?!

twlkyao
  • 14,302
  • 7
  • 27
  • 44
davidOhara
  • 1,008
  • 5
  • 17
  • 39
  • Seems relevant: http://stackoverflow.com/questions/14459860/localizing-attributed-uitextview-from-storyboard – krzyspmac Jun 16 '14 at 22:23

1 Answers1

0

I ended up concluding that it couldn't be done using ibtool in the present version.

Instead I let the Textview be a plain text view and, using my subclass, parsed its text property so I could make a NSMutableAttributedString and set the needed properties.

That enabled me to use ibtool to extract the strings and still have an attributed textview.

Localizing attributed UITextView from storyboard

Community
  • 1
  • 1
StrawHara
  • 1,301
  • 19
  • 33