我需要创建类似的东西: http://t3.gstatic.com/images?q=tbn:ANd9GcQZu06WspVUaFTn-C-YD6Pzu_oWH5NLA1Q8nPUZEdemllFIAMNn
所以我需要在指定位置的图像上放置用户输入字符串,然后将其保存在内存中。
我该怎么做?
答案 0 :(得分:2)
drawInRect
drawInRect
drawInRect
或drawInPoint
答案 1 :(得分:1)
这是一个用于裁剪图像的小代码示例。
- (UIImage *)croppedImageWithRect:(CGRect)bounds {
CGImageRef imageRef = CGImageCreateWithImageInRect(scaleImage.CGImage, bounds);
UIImage *croppedImage = [UIImage imageWithCGImage:imageRef];
CGImageRelease(imageRef);
return croppedImage;
}
享受。
答案 2 :(得分:0)
在图像上使用UItextView来显示此类字符串。