ContentViewController.swift 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //
  2. // ContentViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Apple on 2020/10/31.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ContentViewController: BaseViewController {
  10. var titleStr = ""
  11. var strHtml = ""
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. self.title = titleStr
  15. initNavLeftBackButton()
  16. let label:UITextView = UITextView()
  17. label.text = strHtml
  18. label.isEditable = false
  19. label.frame = CGRect(x:self.view.frame.origin.x+20,
  20. y:self.view.frame.origin.y+20,
  21. width:self.view.frame.size.width-40,
  22. height:self.view.frame.size.height-40);
  23. self.view.addSubview(label)
  24. let width:CGFloat = ( SCREEN_WIDTH-60);
  25. let str:NSString = "<html><meta name=\"viewport\" content=\"width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no\"/><head><style type=\"text/css\">body{font-size:18px;}</style></head><body>%@<style>*{ width: %fpx; margin: 0; padding: 0 0; box-sizing: border-box;} img{ width: %fpx;}</style></body></html>" as NSString;
  26. strHtml = NSString(format: str,strHtml,width,width) as String
  27. let data:Data = strHtml.data(using: String.Encoding(rawValue: String.Encoding.unicode.rawValue))!
  28. do {
  29. let attrinbuteString: NSAttributedString = try! NSAttributedString.init(data: data, options: [ NSAttributedString.DocumentReadingOptionKey.documentType: NSAttributedString.DocumentType.html ], documentAttributes: nil)
  30. DispatchQueue.main.async {
  31. label.attributedText = attrinbuteString
  32. }
  33. }
  34. // Do any additional setup after loading the view.
  35. }
  36. /*
  37. // MARK: - Navigation
  38. // In a storyboard-based application, you will often want to do a little preparation before navigation
  39. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  40. // Get the new view controller using segue.destination.
  41. // Pass the selected object to the new view controller.
  42. }
  43. */
  44. override func viewWillAppear(_ animated: Bool) {
  45. super.viewWillAppear(animated)
  46. }
  47. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  48. super.init(nibName: "ContentViewController", bundle: nil)
  49. }
  50. required init?(coder aDecoder: NSCoder) {
  51. fatalError("init(coder:) has not been implemented")
  52. }
  53. }