I want to programatically set a text in my UITableView. I do not want to do it from
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
I tried something like
[self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:0]].textField.text = @"test";
This doesn't work as this is not part of the structure. How do I do it? Been looking in the docs but cannot find it.