【发布时间】:2011-07-25 09:31:04
【问题描述】:
我正在构建一个应用程序,一个示例我有 MapView,它会显示许多 annView,问题是我怎样才能使它完全不同,带有一个小字幕,例如数字或类似符号的东西
UIImage 能做到吗?
我想做类似 Yelp 的东西
+ (UIImage *) imageWithView:(UIView *)view
{
UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);
//UIGraphicsBeginImageContext(view.bounds.size);
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
【问题讨论】:
标签: xcode uiimage mkmapview mkannotationview