I am stumped.
I cannot get my code to do what I want it to do.
When I run the following code, the first line generates a nil.
if let path = NSBundle.mainBundle().pathForResource("med", ofType: nil) {
do {
let data = try String(contentsOfFile: path)
textview.text = data
} catch {
print("saveReminder failed")
let nsError = error as NSError
print("\(nsError.localizedDescription)")
}
} else {
print("Error!")
}