SimplePDF icon indicating copy to clipboard operation
SimplePDF copied to clipboard

attributed text loses attributes...

Open davidseek opened this issue 7 years ago • 0 comments

Hey. I try to have an image attached into the NSAttributedString but the image gets lost.

        let typeDetails = NSMutableAttributedString()
        let attachment = NSTextAttachment()
        attachment.image = Img.checked
        attachment.bounds = CGRect(x: 0, y: 0, width: 10, height: 10)
        let attachmentStr = NSAttributedString(attachment: attachment)
        
        typeDetails.append( NSAttributedString(string: ">>>>>") )
        typeDetails.append(attachmentStr)
        typeDetails.append( NSAttributedString(string: "<<<<<") )
        pdf.addAttributedText(text: typeDetails)
screen shot 2017-11-03 at 2 25 28 pm

I have tried several approaches as well as several images.

idea?

davidseek avatar Nov 03 '17 18:11 davidseek