Minimum Font Size deprecated on ios version 6.0

后端 未结 9 986
逝去的感伤
逝去的感伤 2021-02-02 05:07

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

9条回答
  •  误落风尘
    2021-02-02 05:26

    I am answering very late, but might help any other. As every one knows that setMinimumFontSize has been deprecated, so other method replacing setMinimumFontSize is setAdjustFontToFitWidth which takes BOOL e.g

    [yourLabel setAdjustsFontSizeToFitWidth:YES];
    //or
    yourLabel.adjustsFontSizeToFitWidth = YES;
    

提交回复
热议问题