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 8398391
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T21:02:42+00:00 2026-06-09T21:02:42+00:00

I have an NSTExtView and am setting attribues for certain ranges of text using

  • 0

I have an NSTExtView and am setting attribues for certain ranges of text using [theTextView.textStorage addAttribute: value: range:]

For example, I highlight a range using [theTextView.textStorage addAttribute:NSBackgroundColorAttributeName value:[NSColor yellowColor] range:theSelectedRange];

The problem is that when I manually type new text into that range, it is not highlighted. It splits the highlighted range into 2 ranges and beings inserting non-highlighted text between them. Is there a way to make the newly inserted text also be highlighted?

  • 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-09T21:02:43+00:00Added an answer on June 9, 2026 at 9:02 pm

    When the user types something new into your NSTextView, the insertion point is using whatever attributes (if any) are associated with the current font. This is also referred to as the “typingAttributes” of a text view. In most cases, the user is going to be typing with a black color and a white background.

    Now since you’re highlighting (and not doing a selection), what you need to do is to pick up the current color at the cursor’s insertion point.

    You can do that via fetching the attributes via:

    // I think... but am not 100% certain... the selected range
    // is the same as the insertion point.
    NSArray * selectedRanges = [theTextView selectedranges];
    if(selectedRanges && ([selectedRanges count] > 0))
    {
        NSValue * firstSelectionRangeValue = [selectedRanges objectAtIndex: 0];
        if(firstSelectionRangeValue)
        {
            NSRange firstCharacterOfSelectedRange = [firstSelectionRangeValue rangeValue];
    
            // now that we know where the insertion point is likely to be, let's get
            // the attributes of our text
            NSSDictionary * attributesDictionary = [theTextView.textStorage attributesAtIndex: firstCharacterOfSelectedRange.location effectiveRange: NULL];
    
            // set these attributes to what is being typed
            [theTextView setTypingAttributes: attributesDictionary];
    
            // DON'T FORGET to reset these attributes when your selection changes, otherwise
            // your highlighting will appear anywhere and everywhere the user types.
        }
    }
    

    I haven’t tested or tried out this code at all, but this should get you to where you need to be.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have NSTextView that i add text to using def puts(val) storage = @output.textStorage
Using an action I'm setting an NSTextView object with a specific string. For example:
I have a NSTextView , which may contains rich text or rich text with
I have an NSTextView with text & images in it, which is supposed to
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 an NSTextView that I'm outputting text from NSTask. Everything works as expected
I have a basic NSTextView with rich text and graphics enabled (in IB). What
I have a textField the accepts text input and prints to an NSTextView when
I have a small MacRuby app that displays some text inside a NSTextView .

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.