From 2f7b5757797a25c391759fe59d81ebb18535fb04 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Tue, 20 Aug 2019 10:00:07 -0400 Subject: [PATCH] Fixes to ambiguity --- JSONCreator_iOS/JSONCreator/DetailViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/JSONCreator_iOS/JSONCreator/DetailViewController.swift b/JSONCreator_iOS/JSONCreator/DetailViewController.swift index 09f818b..a327275 100644 --- a/JSONCreator_iOS/JSONCreator/DetailViewController.swift +++ b/JSONCreator_iOS/JSONCreator/DetailViewController.swift @@ -34,6 +34,8 @@ class DetailViewController: UIViewController { textView.smartDashesType = .no textView.smartQuotesType = .no textView.smartInsertDeleteType = .no + textView.autocapitalizationType = .none + textView.autocorrectionType = .no let shareButton = UIBarButtonItem(barButtonSystemItem: .action, target: self, action: #selector(shareButtonPressed)) let buildButton = UIBarButtonItem(barButtonSystemItem: .play, target: self, action: #selector(play))