Microsoft Windows Phone 8.1 support ends (13 Jul 2017)

Microsoft has ended support for Windows Phone 8.1

Questions about iOS development and PDF

How to search by string programatically

More
IP: 192.168.0.71 9 years 1 week ago #12132 by luigav
Hi,
I would like to create my own toolbar and do a search by string programatically. How I do it?
More
IP: 192.168.0.71 9 years 1 week ago #12139 by emanuele
Hi,

you can use PDFPage find method to get a PDFFinder instance, then manage the search result.
Here is a simple method that shows how to get string occurrences in whole pdf:
Code:
- (void)customSearch:(PDFDoc *)doc ofString:(NSString *)string { BOOL caseSensitive = NO; BOOL wholeWord = NO; for (int i = 0; i < doc.pageCount; i++) { // get page PDFPage *page = [doc page:i]; [page objsStart]; // find in page PDFFinder *finder = [page find:string :caseSensitive :wholeWord]; // manage each search term contained in this page for (int c = 0; c < finder.count; c++) { // start position int firstCharPos = [finder objsIndex:c]; NSLog(@"page: %i", i); NSLog(@"pos: %i", firstCharPos); // do custom actions } } }
Time to create page: 0.377 seconds
Powered by Kunena Forum