How do you return a multiline text CGSize from the new iOS 7 method sizeWithAttributes?
I would like this to produce the same results as sizeWithFont:constrainedToSi
CGSize stringsize = [lbl.text sizeWithAttributes: @{NSFontAttributeName:[UIFont fontWithName:FontProximaNovaRegular size:12.0]}]; CGSize adjustedSize = CGSizeMake(ceilf(stringsize.width), ceilf(stringsize.height));
use ceilf method to manage properlly
ceilf