andreamazz / SlideOutNavigation

SlideOut Navigation Controller for iOS.
MIT License
210 stars 49 forks source link

Fixed deprecated method #63

Closed imryan closed 10 years ago

imryan commented 10 years ago

Changed sizeWithFont: to sizeWithAttributes:.

andreamazz commented 10 years ago

That's not the right way to use sizeWithAttributes:. You can find the right way to use it just a couple of lines above your code:

fontSize = [text sizeWithAttributes: @{NSFontAttributeName:self.options[AMOptionsCellBadgeFont]}];

As you can see the two lines of code are in a #ifdef directive to maintain backwards compatibility with iOS prior to 7.0. The code in this state won't compile on iOS6 or 5.

imryan commented 10 years ago

Oh okay, my bad!