Hello I am using One tab bar button on toolbar , this button will show next view with table view ,Here is my code

[self presentModalViewController:self.navigationController
                            animated:YES];

my problem is that when I click this tab bar button it will showing next view with tableview but not navigation bar. because of this i am unable to perform delete operation in tableView.

How to solve the issue?

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

If you dont find the navigation bar on the next class means , it does not have a navigation controller, so before pusing it add a navigation controller to your next view.

Try like this:

NextViewController *nextViewController=[[NextViewController alloc]initWithNibName:@"NextViewController" bundle:nil];
UINavigationController *navBar=[[UINavigationController alloc]initWithRootViewController:nextViewController];
[self.navigationController presentModalViewController:navBar animated:YES];
[navBar release];
[nextViewController release];

see this stackoverflow question for edit option.

You can simply add a button to navigation bar with ease

self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(editTable)] autorelease];

-(void)editTable{
[tableView setEditing: YES animated: YES];
}

All the best.

link|improve this answer
self.navigationItem.rightBarButtonItem = self.editButtonItem; this is showing EditButton item,,Now how to call Editing method of tableview – iProgrammer May 19 '11 at 11:00
Ok Working fine with Edit and done button.And deleting record also but It is deleting temporary.When start my app again then records are still there – iProgrammer May 19 '11 at 11:05
-(void)tableView:(UITableView *)atableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { if (editingStyle == UITableViewCellEditingStyleDelete) { [bookmarks removeObjectAtIndex:indexPath.row]; [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationFade]; [[NSUserDefaults standardUserDefaults] setObject:bookmarks forKey:@"Bookmarks"]; } } – iProgrammer May 19 '11 at 11:06
feedback

This code is called on button click event in classA VC:

ClassBVC* bVc = [[ClassBVC alloc] initWithNibName:@"ClassBVC" bundle:nil];
     UINavigationController* tempNavCon = [[UINavigationController alloc]    initWithRootViewController:bVc];
    [self presentModalViewController:tempNavCon animated:YES];
    [tempNavCon release];
    [bVc release];
    bVc = nil

;

and in class BVC in view did load you make an UIbarbutton item e.g:

UIBarButtonItem* barButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:self action:@selector(backButtonClicked:)];
    [barButton setTitle:@"Back"];
    [self.navigationItem setLeftBarButtonItem:barButton];
    [barButton release];

And in buttonClickedMethod simply dismiss the the model controller as:

-(void)backButtonClicked:(id)sender
{
    [self dismissModalViewControllerAnimated:YES];
}
link|improve this answer
feedback

if you are using navigationcontroller use like this

[self.navigationController pushViewController:nextController animated:YES];
link|improve this answer
I know this way but can't I use presentModalviewcontroller? – iProgrammer May 19 '11 at 9:54
try like this [[self navigationController] presentModalViewController:navigationController animated:YES]; or yeah please proceed with navigation push – Narayanan Ramamoorthy May 19 '11 at 10:05
If I used presentModalViewcontroller then how to display Edit button for Uitableview ..any idea? – iProgrammer May 19 '11 at 10:08
feedback

Add navigation bar as sub view to the new view with bar button.

Try this

-(IBAction) editClick:(id)sender
{
    [tableView setEditing:![tableView isEditing]  animated:YES];
}
link|improve this answer
And how to connect that button with Editing code of tableView? – iProgrammer May 19 '11 at 10:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.