6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Swift4】 UIActivity: 「PDFを作成」 (Create PDF) を実装する。

Last updated at Posted at 2018-02-22

UIActivityViewControllerの「PDFを作成」(英語版では、Create PDF)というメニューを実装してみました。
UITextViewのテキストをPDF化します。テキストのサイズが画面からはみ出ていても、すべてPDFにしてくれます。
Simulator-Screen-Shot---iPhone-SE---2018-02-22-at-23.38.10.gif

↓右上のアクションボタンを押すと・・・
Simulator-Screen-Shot---iPhone-SE---2018-02-22-at-23.38.17.gif

UITextViewのインスタンスを「var myText:UITextView!」、
右上のアクションボタンを「var actionButton:UIBarButtonItem!」とします。


import UIKit
import Accounts

class ViewController: UIViewController {
    
    @IBOutlet var myText:UITextView!
    @IBOutlet var actionButton:UIBarButtonItem!

    override func viewDidLoad() {
        super.viewDidLoad()
        myText.text = "こんにちは!\nこのアプリは\nUITextViewを\npdfで保存できます\n\n\n\n\n\n"
    }
    
    @IBAction func myAction(){
        let pdfData = NSMutableData()
        UIGraphicsBeginPDFContextToData(pdfData, self.view.bounds, nil)
        let pdfContext = UIGraphicsGetCurrentContext()
        myText.frame = CGRect(origin: CGPoint(x: 0, y: 0), size: myText.contentSize)
        UIGraphicsBeginPDFPageWithInfo(myText.frame, nil)
        self.myText.layer.render(in: pdfContext!)
        UIGraphicsEndPDFContext()

        let activityItems = [myText.text,pdfData] as [Any]
        let activityVC = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)
        self.present(activityVC, animated: true, completion: nil)
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
}
6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?