Hey guys,
I'll try this again. I need help in getting a third option working using a drill down table view. As it sits right now, the application shows all three in the table when the application runs, but when clicked on the second or third, it will only show the view for the third. I read some tutorials on .plist but I wanted to know if it was possible to do it using a condition set for all three. Here's the code that I have:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row == 0)
[details setContent:arrAutoLock];
/*(indexPath.row == 1)
[details setContent:arrPasscodeLock];*/
else
[details setContent:arrRestrictions];
[[self navigationController] pushViewController:details animated:YES];