0

我已经获得了一种用于样式的方法,称为 [in / from] 我的 UIView 子类的-drawRect:方法。不熟悉较低级别的 CG 语法我不知道如何调用以以下开头的方法:

void DrawInsetBeveledRoundedRect( CGContextRef context, CGRect rect, CGFloat radius, UIColor *fillColor) {}

-drawRect:

任何人都可以请建议和或为我提供指导吗?

4

1 回答 1

1
- (void)drawRect:(CGRect)rect {
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    DrawInsetBeveledRoundedRect(ctx, rect, 1234, [UIColor greenColor]);
}
于 2013-01-25T11:20:45.253 回答