如何在NSAttributedString的段落周围创建一个框

时间:2015-06-07 03:37:29

标签: html ios objective-c nsattributedstring outline

在HTML中,您可以制作一个红色轮廓(或虚线轮廓)的段落。

http://www.w3schools.com/cssref/tryit.asp?filename=trycss_outline

我想知道是否可以使用NSAttributedStrings完成类似的操作。我不打算概述每个角色,我希望将整个块放在一个盒子里,那个盒子会有一个边框。这可能是NSAttributedString甚至是CoreText吗?

我已经看到了这个(How to draw a border around a paragraph in UILabel?)解决方案,但我不想在文本的顶部添加一个图层,我宁愿让它成为文本的一部分。

1 个答案:

答案 0 :(得分:1)

听起来你会想要一个带有一些自定义绘图的UITextView子类。这里有一些应该可以解决问题的游乐场代码。你可以调整细节,让它看起来如你所愿,但这是基本的想法。

这是我一直使用的自定义绘图备忘单: http://www.techotopia.com/index.php/An_iOS_7_Graphics_Tutorial_using_Core_Graphics_and_Core_Image

import UIKit
import XCPlayground

let container = UIView(frame: CGRect(x: 0, y: 0, width: 500, height: 500))
container.backgroundColor = UIColor(white: 0.95, alpha: 1.0 )
XCPShowView( "Container", container )

class DottedTextView: UITextView {

    override func drawRect(rect: CGRect) {

        let context = UIGraphicsGetCurrentContext()
        CGContextSetLineWidth( context, 20.0 )
        CGContextSetStrokeColorWithColor(context, UIColor.redColor().CGColor)
        let dashArray: [CGFloat] = [ 6, 4 ]
        CGContextSetLineDash( context, 3, dashArray, dashArray.count )
        CGContextStrokeRect( context, rect )
    }

}

let textView = DottedTextView(frame: CGRect(x: 20, y: 20, width: 300, height: 200) )
container.addSubview( textView )
textView.text = "Bacon ipsum dolor amet ball tip kielbasa brisket drumstick pastrami pork chicken shankle. Ribeye cow doner shankle, alcatra pork chop flank corned beef t-bone shoulder prosciutto."

enter image description here