所有的陣列,表視圖崩潰時訪問Dicitonarys
當我的表視圖負荷,它訪問幾個委託方法。當我配置的電池,我把它調用此方法(其中「LinkedList的」是dictionarys數組):
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
VUWIManager *vuwiManager = [VUWIManager sharedVuwiManager];
NSLog(@"%@", [[vuwiManager linkedList]objectAtIndex:indexPath.row]);
NSLog(@"TESTZOMGOFDSOJFDSJFPODJSAPFDS");
cell.textLabel.text = [[vuwiManager linkedList]objectAtIndex:indexPath.row];
return cell;
}
它崩潰在行cell.textLabel.text = [[vuwiManager linkedList]objectAtIndex:indexPath.row];
- 我知道我做錯了這裏,但我米不知道它是什麼。 linkedList是NSDictionarys的NSMutableArray。
編輯:如果我打電話給cell.textLabel.text = [[vuwiManager linkedList]objectAtIndex:indexPath.row];
它在調試器中返回: { IP = "192.168.17.1"; desc = "description"; }
。只是想我會給出一些格式化細節。
感謝
現在嘗試一下。 – Baub
這是完美的。謝謝!我會在8分鐘內接受答案。我不敢相信我忽略了這一點。 – Baub