2019-10-21 18:51:33 +02:00
|
|
|
//
|
|
|
|
// AboutViewController.swift
|
|
|
|
// NetNewsWire-iOS
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 4/25/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
class AboutViewController: UITableViewController {
|
|
|
|
|
|
|
|
@IBOutlet weak var aboutTextView: UITextView!
|
|
|
|
@IBOutlet weak var creditsTextView: UITextView!
|
|
|
|
@IBOutlet weak var acknowledgmentsTextView: UITextView!
|
|
|
|
@IBOutlet weak var thanksTextView: UITextView!
|
|
|
|
@IBOutlet weak var dedicationTextView: UITextView!
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
|
|
|
configureCell(file: "About", textView: aboutTextView)
|
|
|
|
configureCell(file: "Credits", textView: creditsTextView)
|
|
|
|
configureCell(file: "Thanks", textView: thanksTextView)
|
|
|
|
configureCell(file: "Dedication", textView: dedicationTextView)
|
|
|
|
|
2019-11-26 18:12:24 +01:00
|
|
|
let buildLabel = NonIntrinsicLabel(frame: CGRect(x: 32.0, y: 0.0, width: 0.0, height: 0.0))
|
2019-10-21 18:51:33 +02:00
|
|
|
buildLabel.font = UIFont.systemFont(ofSize: 11.0)
|
|
|
|
buildLabel.textColor = UIColor.gray
|
2020-01-18 20:53:22 +01:00
|
|
|
buildLabel.text = NSLocalizedString("Copyright © 2002-2020 Brent Simmons", comment: "Copyright")
|
2019-10-21 18:51:33 +02:00
|
|
|
buildLabel.numberOfLines = 0
|
|
|
|
buildLabel.sizeToFit()
|
|
|
|
buildLabel.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
|
2019-10-31 01:47:28 +01:00
|
|
|
let wrapperView = UIView(frame: CGRect(x: 0, y: 0, width: buildLabel.frame.width, height: buildLabel.frame.height + 10.0))
|
|
|
|
wrapperView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
wrapperView.addSubview(buildLabel)
|
|
|
|
tableView.tableFooterView = wrapperView
|
2019-10-21 18:51:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
|
|
|
|
return UITableView.automaticDimension
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension AboutViewController {
|
|
|
|
|
|
|
|
func configureCell(file: String, textView: UITextView) {
|
|
|
|
let url = Bundle.main.url(forResource: file, withExtension: "rtf")!
|
|
|
|
let string = try! NSAttributedString(url: url, options: [NSAttributedString.DocumentReadingOptionKey.documentType: NSAttributedString.DocumentType.rtf], documentAttributes: nil)
|
|
|
|
textView.attributedText = string
|
2019-10-22 01:21:42 +02:00
|
|
|
textView.textColor = UIColor.label
|
2019-10-21 18:51:33 +02:00
|
|
|
textView.adjustsFontForContentSizeCategory = true
|
|
|
|
textView.font = .preferredFont(forTextStyle: .body)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|