多个绘图请求动态iPhone

时间:2011-07-07 16:45:25

标签: iphone core-graphics drawrect

我正在尝试为iPhone制作导向器/提示框作为我正在制作的教程框架的一部分。 我已经跟踪并合并了我在这里找到的两个代码: (http://stackoverflow.com/questions/6049682/iphone-how-to-make-a-tip-balloon-programmatically/6052438#6052438)和另一个(无法找到链接,但很确定代码供应商是Brad Larson(欢呼老兄!))制作一个有效但有限的框架

这个想法: 开发人员可以导入已完成的文件,实例化他们想要的“方向”箭头,设置坐标和文本并将其分配给他们想要的任何层/阵列/设置

问题: 我只能让箭头指向上方,但需要改变。我已经完成了代码并搞砸了它,但我对CG的基本知识非常低。 2.如果我尝试添加其他方法,则需要从drawRect调用所以同时调用任何替代方法,我不能 3.核心图形的一些普遍误解也可能会受到阻碍。

到目前为止

代码位(我可以发布整个代码,但它有点长) 在我的主视图控制器中,我声明了一个UIView的实例,当按下按钮时将其绘制

(in mainViewController.m)

TipBallon *textExample = [[TipBallon alloc] initAtPoint:CGPointMake(50.0f, 50.0f) withText:
                          @"You are hearing me talk"];

TipBallon UIView:

- (void)drawRect:(CGRect)rect {
[super drawRect:rect];
CGContextRef contextRef = UIGraphicsGetCurrentContext();
[self drawOutlineInContext:contextRef];
[self drawTextInContext:contextRef];
}

- (id)initAtPoint:(CGPoint)point withText:(NSString *)string {
CGSize size = [string sizeWithFont:[UIFont systemFontOfSize:kFontSize]
                 constrainedToSize:CGSizeMake(kMaxWidth, kMaxHeight)
                     lineBreakMode:UILineBreakModeWordWrap];
CGRect rect = CGRectMake(point.x, point.y, size.width+kPaddingWidth*2.0f,
                         size.height+kPaddingHeight*2.0f+kArrowSize);
if ((self = [super initWithFrame:rect])) {
    self.text = string;
    UIColor *clearColor = [[UIColor alloc] initWithWhite:0.0f alpha:0.0f];
    self.backgroundColor = clearColor;
    [clearColor release];
}
return self;
}



- (void)drawOutlineInContext:(CGContextRef)context {
CGFloat HEIGHTOFPOPUPTRIANGLE = 15;
CGFloat WIDTHOFPOPUPTRIANGLE = 30;
CGFloat borderRadius = 7;
CGFloat strokeWidth = 2;
CGRect currentFrame = self.bounds;

CGContextSetLineJoin(context, kCGLineJoinRound);
CGContextSetLineWidth(context, strokeWidth);
CGContextSetStrokeColorWithColor(context, [UIColor blackColor].CGColor); 
CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);

// Draw and fill the bubble
CGContextBeginPath(context);
CGContextMoveToPoint(context, borderRadius + strokeWidth + 0.5f, strokeWidth + HEIGHTOFPOPUPTRIANGLE + 0.5f);
CGContextAddLineToPoint(context, round(currentFrame.size.width / 2.0f - WIDTHOFPOPUPTRIANGLE / 2.0f) + 0.5f, HEIGHTOFPOPUPTRIANGLE + strokeWidth + 0.5f);
CGContextAddLineToPoint(context, round(currentFrame.size.width / 2.0f) + 0.5f, strokeWidth + 0.5f);
CGContextAddLineToPoint(context, round(currentFrame.size.width / 2.0f + WIDTHOFPOPUPTRIANGLE / 2.0f) + 0.5f, HEIGHTOFPOPUPTRIANGLE + strokeWidth + 0.5f);
CGContextAddArcToPoint(context, currentFrame.size.width - strokeWidth - 0.5f, strokeWidth + HEIGHTOFPOPUPTRIANGLE + 0.5f, currentFrame.size.width - strokeWidth - 0.5f, currentFrame.size.height - strokeWidth - 0.5f, borderRadius - strokeWidth);
CGContextAddArcToPoint(context, currentFrame.size.width - strokeWidth - 0.5f, currentFrame.size.height - strokeWidth - 0.5f, round(currentFrame.size.width / 2.0f + WIDTHOFPOPUPTRIANGLE / 2.0f) - strokeWidth + 0.5f, currentFrame.size.height - strokeWidth - 0.5f, borderRadius - strokeWidth);
CGContextAddArcToPoint(context, strokeWidth + 0.5f, currentFrame.size.height - strokeWidth - 0.5f, strokeWidth + 0.5f, HEIGHTOFPOPUPTRIANGLE + strokeWidth + 0.5f, borderRadius - strokeWidth);
CGContextAddArcToPoint(context, strokeWidth + 0.5f, strokeWidth + HEIGHTOFPOPUPTRIANGLE + 0.5f, currentFrame.size.width - strokeWidth - 0.5f, HEIGHTOFPOPUPTRIANGLE + strokeWidth + 0.5f, borderRadius - strokeWidth);
CGContextClosePath(context);
CGContextDrawPath(context, kCGPathFillStroke);

- (void)drawTextInContext:(CGContextRef)context {
CGRect rect = self.bounds;
rect.origin.x += kPaddingWidth;
rect.origin.y += kPaddingHeight + kArrowSize;
rect.size.width -= kPaddingWidth*2.0f;
rect.size.height -= kPaddingHeight*2.0f;

CGContextSetGrayFillColor(context, 0.0f, 1.0f); // black text
[text drawInRect:rect withFont:[UIFont systemFontOfSize:kFontSize]
   lineBreakMode:UILineBreakModeWordWrap];
}

@end

正如我之前所说,如果我使用向上绘制框的当前方法的几个版本,我将不得不将它添加到drawRect方法,然后它们全部被同时调用。 我能看到的唯一一个行动方案是制作几个不同的类别,每个箭头方向一个,但这太可笑了。 如果有人对如何解决这个问题有任何想法,我会非常感激

0 个答案:

没有答案