这是我使用的代码:
UIFont *markerF = [UIFont systemFontOfSize:40];
NSDictionary *markerA = @{NSFontAttributeName:markerF, NSForegroundColorAttributeName: [UIColor blueColor]};
NSString *markerT = @"+";
CGPoint markerC = CGPointMake(p1.x, p1.y);
CGSize markerS = [markerT sizeWithAttributes:markerA];
CGRect markerR = CGRectMake(markerC.x - (markerS.width / 2.0), markerC.y - (markerS.height / 2.0), markerS.width, markerS.height);
[markerT drawInRect:markerR withAttributes:markerA];
我怎样才能使它最后也添加其中一个标记呢?
由于