Hi this is my first post and I'm a beginner with iphone development and objective-c, than, if I made some mistakes I appreciate the help.
THE PROBLEM:
I have a 2000 list of names on my
tableview with a
search bar on top. When I tyep "A" the tableview uses a
mutabledictionary to show the results removing what I don't need from the original
dictionary... until now nothing strange, but when put "A" on the search bar and still with the keyboard on, and scroll the list down and select some option on the list the search bar just disappear without explanation.
MY IDEA:
may be related with:
-(NSIndexPath *)tableView

UITableView *)tableView willSelectRowAtIndexPath

NSIndexPath *)indexPath {
[search resignFirstResponder];
return indexPath;
}
Maybe this just happen in the simulator, I didn't checked on the iphone/ipod anyway.