- (void)drawRect:(CGRect)rect {
// Drawing code.
stickerImage = [UIImage imageNamed:@"betaImage.png"];
CGSize size = stickerImage.size;
UIGraphicsBeginImageContext(size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0.5f * size.width, 0.5f * size.height);
CGContextRotateCTM (context, 90 * M_PI/180);
[stickerImage drawInRect:(CGRect){ { -size.width * 0.5f, -size.height * 0.5f }, size }];
UIGraphicsEndImageContext();
}
を示していない、それは何もCGContextRotateCTMをいただきました私のコードで間違って私は見つけることができないもの