You're welcome Oguz. Thank you very much for all the complements, we are really glad you find STV useful
For info on how to customize the detail view, please check out this post:
www.sensiblecocoa.com/forum/sensible-tab...y-tableview.html#345
As for changing the back button, here is some code sample (please make sure you conform to the SCTableViewModelDelegate in your view controller's header file for this to work):
- (void)tableViewModel:(SCTableViewModel *)tableViewModel
detailViewWillAppearForRowAtIndexPath:(NSIndexPath *)indexPath
withDetailTableViewModel:(SCTableViewModel *)detailTableViewModel
{
UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil];
detailTableViewModel.viewController.navigationItem.backBarButtonItem = backButton;
[backButton release];
}
Hope this helps