Skip to content

Instantly share code, notes, and snippets.

@nwalter08
Created May 23, 2013 18:37
Show Gist options
  • Save nwalter08/5638374 to your computer and use it in GitHub Desktop.
Save nwalter08/5638374 to your computer and use it in GitHub Desktop.
- (IBAction)sendTapped {
ToDo *toDo = [[ToDo alloc] init];
toDo.task = self.taskTextField.text;
toDo.taskDescription = self.descriptionTextView.text;
// Not sure how in the data model we want to handle this but you can get sender email below
// self.toComposeView.toTextField.text
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment