The project I'm working on in Xcode is done in landscape. I may be doing something wrong, but I've had to rotate every image 270 degrees before adding them to my file.
NSString *strFromInt = [NSString stringWithFormat:@"%d",score];
CGContextRef gc = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(gc, 1, 1, 1, 1);
NSString *str = (@"Score ");
UIFont *uif = [UIFont systemFontOfSize:40];
[strFromInt drawAtPoint:CGPointMake(150, 10) withAttributes:@{NSFontAttributeName:uif}];
[str drawAtPoint:CGPointMake(10, 10) withAttributes:@{NSFontAttributeName:uif}];
When I try including a score (in the above code), the text runs along the wall vertically. Any way to fix this (preferably in a method that doesn't make me have to rotate all 47 of my images again)?