私はアプリケーションを構築していました。たとえば、多くの annView を表示する MapView があります。問題は、数字や記号のような小さなサブタイトルを付けて、すべてを異なるものにする方法です。
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;
}