ios - Swift app crashes with (lldb) as only debug output after @IBAction with a UIButton sender -
i see after researching particular debug output isn't super rare, causes can differ pretty greatly. i'm new ios development , have been trying figure out why app crashing, can't crack it. i'm going supply lot of different code snippets, because have hunch what's wrong. i'm partially following along this video tutorial todo list , while differing in ways. notably, chose not start tabbed application template , instead looked way unwind views. here simple object manager class tutorial has create: import uikit var rmndrmgr = remindermanager() struct reminder { var name = "none" var description = "none" } class remindermanager: nsobject { var reminders = [reminder]() func addreminder(name: string, description: string) { reminders.append(reminder(name: name, description: description)) } } below first view controller: import uikit @objc(todolisttableviewcontroller) class todolisttableviewcontroller: ui...