创建类似于iOS 6 App Store按钮的按钮(包括图片)

时间:2013-05-29 13:52:14

标签: ios core-graphics

我正在尝试重新创建AppleView用于查看应用程序详细信息的表格。

enter image description here

我已经成功完成了实现,除了按钮内的阴影。请注意细节按钮旁边是否有一种微妙的阴影效果。

这是我用来绘制按钮的代码:

if(self.isSelected) {

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, COLORWITHRGB(204, 204, 204).CGColor);
    CGContextSetStrokeColorWithColor(context, COLORWITHRGB(141, 141, 141).CGColor);


    CGSize labelTextSize = [self.titleLabel.text sizeWithFont: self.titleLabel.font];
    CGRect labelFrame = CGRectMake(rect.size.width - labelTextSize.width - 24, (rect.size.height - labelTextSize.height - 4) / 2, labelTextSize.width + 14, labelTextSize.height + 4);


    CGMutablePathRef path = CGPathCreateMutable();
    CGPathAddArc(path, NULL, labelFrame.origin.x + labelFrame.size.width - labelFrame.size.height / 2, labelFrame.origin.y + labelFrame.size.height / 2, labelFrame.size.height / 2, M_PI / 2, M_PI * 3 / 2, YES);
    CGPathAddArc(path, NULL, labelFrame.origin.x + labelFrame.size.height / 2, labelFrame.origin.y + labelFrame.size.height / 2, labelFrame.size.height / 2, M_PI * 3 / 2, M_PI / 2, YES);
    CGPathAddLineToPoint(path, NULL, labelFrame.origin.x + labelFrame.size.width - labelFrame.size.height / 2, CGRectGetMaxY(labelFrame));

    CGContextAddPath(context, path);
    CGContextDrawPath(context, kCGPathFillStroke);

    CFRelease(path);
}

到目前为止,这是它的样子:

enter image description here

看起来并不坏,但它并没有放弃我正在寻找的东西。

有人有任何建议吗?

1 个答案:

答案 0 :(得分:1)

您想要应用内部阴影。

试试这个应用程序http://www.paintcodeapp.com ...它会为你编写代码,它非常方便。