Created
May 23, 2013 18:37
-
-
Save nwalter08/5638374 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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