如何向OHAttributedLabel添加边框

时间:2011-10-18 00:13:37

标签: ios4

我正在使用AliSoftware的OHAttributedLabel将用户定义的超链接添加到我的UILabels。我需要能够在我的OHAttributedLabel项目周围添加边框。有人可以给我一些关于如何做到这一点的代码示例。常规的myLabel.layer.bordercolor不适用于这些。

1 个答案:

答案 0 :(得分:0)

为了添加边框,您可以使用QuartzCore Framework。 导入该框架并使用以下代码。

[[typeTableView layer]setBorderColor:[UIColor whiteColor].CGColor];
    [[typeTableView layer]setCornerRadius:7.0f];
    [[typeTableView layer]setBorderWidth:3];
    [[typeTableView layer]setMasksToBounds:YES];

这是如何给出边框,你可以给它的半径,宽度等等。 并首先添加石英核心框架 感谢