2011-10-18 141 views
1

我使用AliSoftware的OHAttributedLabel將用戶定義的超鏈接添加到我的UILabels中。我需要能夠在我的OHAttributedLabel項目周圍添加邊框。有人可以給我如何做到這一點的代碼示例。常規myLabel.layer.bordercolor不適用於這些。如何將邊框添加到OHAttributedLabel

回答

0

好吧,您可以使用QuartzCore Framework添加邊框。 導入該框架並使用以下代碼。

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

這是你如何給邊界,你可以給它的半徑,寬度等等。 首先加石英芯框架 謝謝