I' m creating a custom UITableViewCell view. I have a method for tableviewcell and I have created UILabel memberLabel programmatically:
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
CPNMemberCell *cell = (CPNMemberCell*) [tableView dequeueReusableCellWithIdentifier:kCellIdentifier];
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"TeamCell" owner:self options:nil];
cell = baseCell;
self.baseCell = nil; }
memberLabel = [[UILabel alloc] initWithFrame:CGRectMake(32, 19, 183, 27)];
[cell addSubview:memberLabel];
NSString* test = @"SOME TEXT";
memberLabel.text = test;
return cell; }
So this code works quite well. But when I change test string value to string containing JSON response in MutableDictionary, all fails. I specially output that string to console log in order to be sure it is not empty or whatever. And I have an except during assigning that string to UILabel:
NSString* test = [ _members valueForKey:@"modelId"];
NSLog(@"Testing response in the console:", test);
memberLabel.text = test;
This really makes me crazy. I don't understand what's wrong: response correctly prints to console, UILabel correctly displays text strings as in first code block, but when I try it to display string with that response I have a sigabrt exception in main!
I really hope for some help and advices, becuase it is really quite strange! Thanks in advance.

NSLog(@"Testing response in the console:", test);isn't going to logtest. So how do you know thattestexists and is something valid (not, eg, a dictionary)? – Hot Licks Nov 13 '12 at 2:02