mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-17 02:52:01 +08:00
* clean up title model * update title style * organize issue SC method * remove background colors from styled text in issues * collection view bg white * remove card inset and clean up snap superview code * clean up label design * thread is root and change base font size * remove borders on comment cells * adjust collapse design * adjust comment line spacing and make non-root body smaller * refactor detail view * viewer header background color * more buttons in reaction cell * vertical spacers working * design basically finished; * scroll to bottom accounts for inset * PR review background color white * fixup PR review comments * spacing on merge and review * readme background white * rename to just "spacer" * horizontal spacing * fix tests
60 lines
1.5 KiB
Swift
60 lines
1.5 KiB
Swift
//
|
|
// ViewMarkdownViewController.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 5/19/18.
|
|
// Copyright © 2018 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
final class ViewMarkdownViewController: UIViewController {
|
|
|
|
private let markdown: String
|
|
private let textView = UITextView()
|
|
|
|
init(markdown: String) {
|
|
self.markdown = markdown
|
|
super.init(nibName: nil, bundle: nil)
|
|
title = NSLocalizedString("Markdown", comment: "")
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
navigationItem.rightBarButtonItem = UIBarButtonItem(
|
|
barButtonSystemItem: .done,
|
|
target: self,
|
|
action: #selector(onDismiss)
|
|
)
|
|
|
|
textView.isEditable = false
|
|
textView.text = markdown
|
|
textView.font = Styles.Text.code.preferredFont
|
|
textView.textColor = Styles.Colors.Gray.dark.color
|
|
textView.textContainerInset = UIEdgeInsets(
|
|
top: Styles.Sizes.rowSpacing,
|
|
left: Styles.Sizes.columnSpacing,
|
|
bottom: Styles.Sizes.rowSpacing,
|
|
right: Styles.Sizes.columnSpacing
|
|
)
|
|
view.addSubview(textView)
|
|
}
|
|
|
|
override func viewWillLayoutSubviews() {
|
|
super.viewWillLayoutSubviews()
|
|
textView.frame = view.bounds
|
|
}
|
|
|
|
// MARK: Private API
|
|
|
|
@objc func onDismiss() {
|
|
dismiss(animated: trueUnlessReduceMotionEnabled)
|
|
}
|
|
|
|
}
|