【发布时间】:2015-03-31 17:51:10
【问题描述】:
我有一个 NSTextview,仅当文本设置为至少 16 时才会显示良好,但这对于打印来说太大了。如何使用不同字体大小的 NSTextView 仅用于打印?我已经深入研究了 NSPrintInfo 但到目前为止还没有结果。谢谢
【问题讨论】:
标签: objective-c cocoa nstextview
我有一个 NSTextview,仅当文本设置为至少 16 时才会显示良好,但这对于打印来说太大了。如何使用不同字体大小的 NSTextView 仅用于打印?我已经深入研究了 NSPrintInfo 但到目前为止还没有结果。谢谢
【问题讨论】:
标签: objective-c cocoa nstextview
这是一个例子:
// Create another text view just for printing
var printTextView = NSTextView(frame: NSMakeRect(0, 0, 528, 688)) // A4
// Add a modified version of your attributed string to the view
printTextView.textStorage!.mutableString.appendString(myAttributedStringWithAdjustedSize)
// Get printing infos
let sharedInfo = NSPrintInfo.sharedPrintInfo()
let sharedDict = sharedInfo.dictionary()
let printInfoDict = NSMutableDictionary(dictionary: sharedDict)
printInfoDict.setObject(NSPrintSpoolJob, forKey: NSPrintJobDisposition)
let printInfo = NSPrintInfo(dictionary: printInfoDict)
// Set some preferences
printInfo.horizontallyCentered = true
printInfo.verticallyCentered = false
printInfo.scalingFactor = 0.8
// Print the custom text view
let op = NSPrintOperation(view: printTextView, printInfo: printInfo)
op.runOperation()
【讨论】: