Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8989955
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T22:23:19+00:00 2026-06-15T22:23:19+00:00

I have an NSTextView that uses the find bar ( [textView setUsesFindBar:YES]; ). I

  • 0

I have an NSTextView that uses the find bar ([textView setUsesFindBar:YES];).

I have 2 questions.

  1. How do I clear the visual feedback from a find operation?

    My problem happens when I programmatically change the content of the textView. The visual feedback for a search operation on the previous content remains after the content change. Obviously these yellow boxes do not apply to the new content so I need a way to clear them when changing the textView content.

    Note: I did not implement the NSTextFinderClient protocol because I have a simple textView and the find bar just works without any other effort.

  2. How can I send a search string to the find bar?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T22:23:21+00:00Added an answer on June 15, 2026 at 10:23 pm

    I found my answers, so for others here’s how to do it.

    First you need an instance of NSTextFinder so you can control it. We set that up in code.

    textFinder = [[NSTextFinder alloc] init];
    [textFinder setClient:textView];
    [textFinder setFindBarContainer:[textView enclosingScrollView]];
    [textView setUsesFindBar:YES];
    [textView setIncrementalSearchingEnabled:YES];
    

    First answer: To clear visual feedback I can do either of 2 things. I can just cancel the visual feedback…

    [textFinder cancelFindIndicator];
    

    Or I can alert NSTextFinder that I’m about to change my textView content…

    [textFinder noteClientStringWillChange];
    

    Second answer: There’s a global NSFindPboard. You can use that to set a search.

    // change the NSFindPboard NSPasteboardTypeString
    NSPasteboard* pBoard = [NSPasteboard pasteboardWithName:NSFindPboard];
    [pBoard declareTypes:[NSArray arrayWithObjects:NSPasteboardTypeString, NSPasteboardTypeTextFinderOptions, nil] owner:nil];
    [pBoard setString:@"new search" forType:NSStringPboardType];
    NSDictionary* options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSTextFinderCaseInsensitiveKey, [NSNumber numberWithInteger:NSTextFinderMatchingTypeContains], NSTextFinderMatchingTypeKey, nil];
    [pBoard setPropertyList:options forType:NSPasteboardTypeTextFinderOptions];
    
    // put the new search string in the find bar
    [textFinder cancelFindIndicator];
    [textFinder performAction:NSTextFinderActionSetSearchString];
    [textFinder performAction:NSTextFinderActionShowFindInterface]; // make sure the find bar is showing
    

    There’s a problem though. The actual text field in the find bar does not get updated after that code. I found that if I toggle the first responder then I can get it to update…

    [myWindow makeFirstResponder:outlineView];
    [myWindow makeFirstResponder:textView];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an NStextView that loads a description from a JSON source. The NSTextView
I have a NSTextView that I want to display a horizontal scroll bar. Following
I have an NSTextView that I'm outputting text from NSTask. Everything works as expected
I have a subclassed NSTextView that I am manipulating in a separate thread (using
I have a button that does something to the selected text in NSTextView. If
I have a problem with my NSTextView. My textView is selected and editable when
I have a small MacRuby app that displays some text inside a NSTextView .
I'd like to add a find bar (just like the one that appears in
I have NSTextView that i add text to using def puts(val) storage = @output.textStorage
I have a NSTextView textView bind its data to content property textView's rich text

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.