无法正确绘制iOS打印渲染器

时间:2017-08-13 17:16:35

标签: ios swift uiprintpagerenderer

行。似乎缺乏这方面的例子,我很难过。

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

非常奇怪的是,几年前我在ObjC中做到了这一点,而且我似乎无法在Swift中做同样的事情。

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

The project is here.

这是一个完全开源的项目,所以没有任何隐藏;然而,它仍处于发展阶段,并且是一个不断变化的目标。

This is the page renderer class.

BTW:忽略委托类。我只是在四处挣扎,试图弄清楚事情。我还没有计划做任何委托工作。 特别是,我的问题涉及正在发生的事情here

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)
    }
}

and here

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)
}

这是从here调用的:

@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的位置绘制的,如下所示:

Display Of Jumbled Text

这应该是在页面上运行的会议名称列表。

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

我没有费心超越预览,因为这甚至都没有效果。这个列表是我现在连接的唯一一个,我只是在打印会议名称的阶段,以确保我的基本布局正确。

我显然不这样做。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

好的。我弄清楚问题是什么。

我试图使用UIKit例程来做到这一点,它假设一个相当高级别的绘图上下文。 drawText(在: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
}