I want to implement advance search functionality so that if a particular text is typed in search bar, the list of contents in UITableview should be filtered based on the search and then the search text occurances should be highlighted? Please give me some ideas? Thanks in advance.

link|improve this question
feedback

2 Answers

up vote 8 down vote accepted

Use NSAttributedString... Find UIControllers that draw NSAttribute String because UILabel,UITextView doesnot support NSAttributedString...

I have achieved this in my code...

Advance search

link|improve this answer
I cant findout controllers for NSAttributed string – Anonymous Nov 25 '10 at 15:45
2  
Try with this sample code.. github.com/AliSoftware/Ali-Cocoa-Classes – KingofBliss Nov 25 '10 at 16:00
Don't forget to add the CoreText.framework. – Joseph Tura Dec 28 '10 at 22:20
2  
Downvoted for pointing us to a big repository of your code instead of answering directly. – David Moles Apr 4 '11 at 18:01
feedback

I haven't tried something like this myself but my approach would be as follows:

  1. Implement the method textField:shouldChangeCharactersInRange:replacementString: in your UITextFieldDelegate object. This method will get called for every character that is entered or deleted from your textField.

  2. In the above delegate method, based on the current text content in the TextField, perform your search and return a list(array) of results.

  3. Take the array and for each result construct a custom UITableViewCell. This cell should have a UIWebView whose text is an excerpt of your search result.

  4. For the highlighting, you need to perform a search-replace in the text you are about to render in the WebView to find the search string, say foo for example, and replace it with <b>foo</b> or any other HTML formatting you may wish to apply. You can use the standard NSString API - (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target withString:(NSString *)replacement to do the find-replace.

Hope this helps.

link|improve this answer
1  
First i also tried with UIwebView but it takes lots of time to load, so i switched to this. No it is much faster and looks great.. – KingofBliss Nov 26 '10 at 15:43
feedback

Your Answer

 
or
required, but never shown