UILabelをUIImageに描画しています。
UILabelの幅は193.5ですが、以下のコードから得られるUIImageの幅は194です。
どうしてこれなの?
UIGraphicsBeginImageContextWithOptions(label.bounds.size, YES, [[UIScreen mainScreen] scale]);
[label.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();