UITabBarControllerのデザインをちょこちょこ調整する必要があった。
またいつか使いそうな気がするのでメモ。
この設定はiOS7.1系以降なら問題なく動くと思う。7.0系は問題があったようななかったような。
+ (UIImage *)imageFromColor:(UIColor *)color size:(CGSize)size {
CGRect bounds = CGRectZero;
bounds.size = size;
UIGraphicsBeginImageContext(bounds.size);
CGContextRef contextRef = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(contextRef, [color CGColor]);
CGContextFillRect(contextRef, bounds);
UIImage *image = UIGraphicsGetImageFromCurren