我试图在我的表格视图单元格中设置标签的值(itemDescrip为@" body"),由于某种原因,这一行给我一个EXC_BAD_ACCESS错误:
NSString *valueString= [NSString stringWithFormat: @"postTitle='%@'",
titleValue];
[yourMethodCall... Params:@{@"where" : valueString} ]
我不确定为什么。填充标签的数据来自Drupal端点(成功,当我记录我的数组时,descriptpData)。所以我不确定为什么这条线让我悲伤。想法?
的 ViewController.h
NSDictionary *node = [self.descripData objectAtIndex:indexPath.row];
ViewController.m
@property (assign, nonatomic) NSArray *descripData;