My tableViewcell is in array and i want to select diary cell from which i need to navigate to next screen.i dont know what to implement in did select row method.please help me out
table=[[UITableView alloc]init];
table.frame=CGRectMake(0, 0, 250, CGRectGetHeight(self.view.frame));
table.delegate=self;
table.dataSource=self;
table.backgroundColor=RGBCOLOR(255,255,255);
tabledata=[NSMutableArray arrayWithObjects:@"Me and My stuff",@"Upgrade Membership",@"Diary",@"Progress",@"Friends",@"My awards and points",@"Messages",@"Blogs",@"Fun stuff",@"Remainders",@"Settings",@"Signout",nil];
table.backgroundColor=RGBCOLOR(255,239,213);
table.sectionFooterHeight=44;
table.sectionHeaderHeight=44;
table.separatorStyle=UITableViewCellSeparatorStyleNone;
[self.view addSubview:table];
self.view.backgroundColor=RGBCOLOR(255,239,213);
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *cellidentifier =@"table";
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellidentifier];
if (cell==nil) {
cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellidentifier];
cell.opaque=NO;
cell.backgroundColor=RGBCOLOR(255,239,213);
cell.textLabel.textColor=RGBCOLOR(32,178,170);
cell.selectionStyle=UITableViewCellSelectionStyleBlue;
}
cell.textLabel.text=[tabledata objectAtIndex:indexPath.row];
return cell;
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
}