I just upgraded to xcode 4.5 with iOS 6.0 and it\'s highlighting a warning on all the UILabels in my XIB files saying \"minimum font size deprecated on ios version 6.0\". Does a
Go into finder and find the .storyboard
file or your .xib
and open with TextEdit. Use find to locate the string "autoshrinkMode"
and replace the value "minimumFontSize"
to "minimumFontScale"
Odd that the conversion wasn't written in the update scripts...
Also credit to @Rob in the comments above for stating the same answer. He should receive credit for this one.