Possible Duplicate:
How to add serach bar in navigation bar for iPhone
This is the code to display search bar but i want to put this in navigation bar
sBar = [[UISearchBar alloc]initWithFrame:CGRectMake(0,10,320,30)];
sBar.delegate = self;
[self.view addSubview:sBar];
//[self.navigationItem.rightBarButtonItem addSubview:sBar];
//self.navigationItem.rightBarButtonItem=sBar;
is there any way?