-(void)ottieniMarche{
responseSimulate = [[NSArray alloc]initWithObjects:@"pollo",@"cane",@"gatto",@"verme",@"gallo",@"topo",@"canguro",@"elefante",@"giraffa" ,nil];
}
现在我必须在mainTableView.m广告上发送此信息,我实际使用的代码是:
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
elementMainTableView = [[NSArray alloc]initWithObjects:@"aaa",@"bbb",@"ccc",@"ddd",@"eee",@"fff",@"ggg",@"hhh",@"iii" ,nil];
}
return self;
}
现在我必须使用responseSimulate值更改elementMainTableView值。我的意思是我的maintableView的内容与我的responseSimulate相同。