I created master details template project in xcode 4.6 and I added custom cell with 2 textfields. Since I can't create outlets for textField in UITableViewController I had to create new class DataCell which is subclass of UITableViewCell. Now I don't know how to pass data from DataCell to viewController or any other class?
All the protocol and delegate tutorials are focused on viewControllers so I always end with some line like below:
[self presentModalViewController:enterAmountVC animated:YES];
I obviously cannot use this as my class doesn't have any model or push connection. So question is how to transfer data in this case? Make DataCell which is subclass of UITableViewCell a model class?