1

好的。这方面的例子似乎很少,我很困惑。

我正在尝试制作自定义打印页面渲染器;完全自定义输出的类型,而不是使用现有视图的类型。

真正奇怪的是,几年前我可以在 ObjC 中做到这一点,而在 Swift 中我似乎无法做到这一点。

我应该提到我正在使用 Xcode 的预发布版(Beta 5)和 Swift 4(在我的项目中,这与 Swift 3 几乎没有区别)。

项目在这里。

这是一个完全开源的项目,所以没有任何隐藏;但是,它仍处于开发阶段,并且是一个移动的目标。

这是页面渲染器类。

顺便说一句:忽略委托类。我只是在翻来覆去,试图弄清楚事情。我 [还没有] 计划做任何代表的事情。特别是,我的问题涉及这里发生的事情:

override func drawContentForPage(at pageIndex: Int, in contentRect: CGRect) {
    let perMeetingHeight: CGFloat = self.printableRect.size.height / CGFloat(self.actualNumberOfMeetingsPerPage)
    let startingPoint = max(self.maxMeetingsPerPage * pageIndex, 0)
    let endingPointPlusOne = min(self.maxMeetingsPerPage, self.actualNumberOfMeetingsPerPage)
    for index in startingPoint..<endingPointPlusOne {
        let top = self.printableRect.origin.y + (CGFloat(index) * perMeetingHeight)
        let meetingRect = CGRect(x: self.printableRect.origin.x, y: top, width: self.printableRect.size.width, height: perMeetingHeight)
        self.drawMeeting(at: index, in: meetingRect)
    }
}

在这里

func drawMeeting(at meetingIndex: Int, in contentRect: CGRect) {
    let myMeetingObject = self.meetings[meetingIndex]
    var top: CGFloat = contentRect.origin.y
    let topLabelRect = CGRect(x: contentRect.origin.x, y: 0, width: contentRect.size.width, height: self.meetingNameHeight)
    top += self.meetingNameHeight
    let meetingNameLabel = UILabel(frame: topLabelRect)
    meetingNameLabel.backgroundColor = UIColor.clear
    meetingNameLabel.font = UIFont.boldSystemFont(ofSize: 30)
    meetingNameLabel.textAlignment = .center
    meetingNameLabel.textColor = UIColor.black
    meetingNameLabel.text = myMeetingObject.name
    meetingNameLabel.draw(topLabelRect)
}

都是从这里调用的:

@IBAction override func actionButtonHit(_ sender: Any) {
    let sharedPrintController = UIPrintInteractionController.shared
    let printInfo = UIPrintInfo(dictionary:nil)
    printInfo.outputType = UIPrintInfoOutputType.general
    printInfo.jobName = "print Job"
    sharedPrintController.printPageRenderer = BMLT_MeetingSearch_PageRenderer(meetings: self.searchResults)
    sharedPrintController.present(from: self.view.frame, in: self.view, animated: false, completionHandler: nil)
}

发生了什么,页面上的所有内容都堆积在顶部。我正在尝试在页面上打印一个连续的会议列表,但它们都被绘制在 y=0 位置,如下所示:

乱码显示

这应该是一个会议名称列表,在页面下方。

到达这里的方法是启动应用程序,等到它连接到服务器后,然后按下大按钮。您将获得一个列表,然后按屏幕顶部的“操作”按钮。

我没有费心超越预览,因为那根本行不通。该列表是我现在唯一连接的列表,我只是在简单地打印会议名称以确保我的基本布局正确。

我显然没有。

有任何想法吗?

4

1 回答 1

1

好的。我弄清楚了问题所在。

我试图使用 UIKit 例程来做到这一点,它假设一个相当高级的绘图上下文。drawText(in: CGRect) 东西是我的灯泡。

我需要使用较低级别的基于上下文的绘图来完成所有工作,并将 UIKit 排除在外。

下面是我现在如何实现 drawMeeting 例程(我已经更改了我绘制的内容以显示更多相关信息)。我仍在努力,它会变得更大:

func drawMeeting(at meetingIndex: Int, in contentRect: CGRect) {
    let myMeetingObject = self.meetings[meetingIndex]
    var remainingRect = contentRect

    if (1 < self.meetings.count) && (0 == meetingIndex % 2) {
        if let drawingContext = UIGraphicsGetCurrentContext() {
            drawingContext.setFillColor(UIColor.black.withAlphaComponent(0.075).cgColor)
            drawingContext.fill(contentRect)
        }
   }

    var attributes: [NSAttributedStringKey : Any] = [:]
    attributes[NSAttributedStringKey.font] = UIFont.italicSystemFont(ofSize: 12)
    attributes[NSAttributedStringKey.backgroundColor] = UIColor.clear
    attributes[NSAttributedStringKey.foregroundColor] = UIColor.black

    let descriptionString = NSAttributedString(string: myMeetingObject.description, attributes: attributes)
    let descriptionSize = contentRect.size
    var stringRect = descriptionString.boundingRect(with: descriptionSize, options: [NSStringDrawingOptions.usesLineFragmentOrigin,NSStringDrawingOptions.usesFontLeading], context: nil)
    stringRect.origin = contentRect.origin
    descriptionString.draw(at: stringRect.origin)

    remainingRect.origin.y -= stringRect.size.height
}
于 2017-08-14T11:52:38.740 回答