У меня проблема ...
В моем MuttableArray есть элемент N, но все элементы имеют значение null
.h
@interface ViewController : UIViewController <UITableViewDelegate,UITableViewDataSource> {
NSMutableArray *listProjectPost;
}
@property (retain,nonatomic) NSMutableArray *listProjectPost;
.m
@implementation ViewController
@synthesize listProjectPost;
-(void)dealloc
{
[self.listProjectPost release];
[super dealloc];
}
-(void)viewWillAppear:(BOOL)animated{
self.listProjectPost = [NSMutableArray array];
// loop code
// current element
currentNews *dop = [[currentNews alloc] init];
[self.listProjectPost addObject:[dop createElement:node]];
[dop release];
}
в
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
...
currentNews *dop = [self.listProjectPost objectAtIndex:indexPath.row];
cell.textLabel.text = [dop getTitle];
...
}
все нормально на виде сверху (вид при создании)
но в следующем индексе у меня ошибка - EXC_BAD_ACCESS
извините за мой английский