// // DiffString.swift // Freetime // // Created by Ryan Nystrom on 8/12/17. // Copyright © 2017 Ryan Nystrom. All rights reserved. // import UIKit func CreateDiffString(code: String, limit: Bool = false) -> NSAttributedString { let split = code.components(separatedBy: CharacterSet.newlines) let count = split.count let lines: [String] if limit { let cutLines = min(count, 4) lines = Array(split[(count-cutLines)..