My App Uses Coredata and Displays Data in a table, one column has a checkbox and one has the title. What i want it to do is that when the checkbox gets checked it deletes the row instead of people having using the Remove/Minus button. The reason I want this is because my app is a Task Management app.
Share
That sounds like a bad user interface design. One stray click, and the task is gone. What you should do is have the checkbox set a ‘completed’ flag, and then your view can either display that task differently (such as with text strikethrough or grayed out) or provide the user the option of not displaying entries with the flag set.