當我滾動UITableView它崩潰的應用程序。這是代碼。UITableView滾動崩潰應用程序
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSDictionary *tempDict = [albums objectAtIndex:indexPath.row];
static NSString *CellIdentifier = @"ImageCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
} else {
AsyncImageView *oldImage = (AsyncImageView *)[cell.contentView viewWithTag:999];
[oldImage removeFromSuperview];
}
我設置的斷點,並停靠在行
NSDictionary *tempDict = [albums objectAtIndex:indexPath.row];
我到底做錯了什麼? 在此先感謝。
這是什麼'tempDict' var? – 2011-08-30 12:30:15
你的「專輯」是否與你的行一樣多? – phi
你會得到什麼錯誤? – Dancreek