NSTextView is the front-end class to MacOS's Application Kit text system. It draws the text managed by the back-end components and handles user events to select and modify its text. While NSTextView is a subclass of NSText—which declares the most general Cocoa interface to the text system—NSTextView adds major features beyond the capabilities of NSText.
10
votes
4answers
4k views
What is the best way to implement syntax highlighting of source code in Cocoa?
I'm working on Cocoa Application that should be able to analyze and highlight a source code written in such languages as Objective-C, SQL, JavaScript, Python etc. The text should be editable too (by ...
7
votes
2answers
322 views
How do I know when an attachment attribute is being added to my NSTextView?
Because of the semantics of certain NSTextView attachments in my application, I want to know when they are inserted or deleted from my text storage.
My subclass of NSTextView implements the ...
6
votes
2answers
111 views
Custom Data Detectors in NSTextView (similar to the recognition of dates)
Is there a way to implement custom data detectors in NSTextView (like the one that recognizes dates or telephone numbers)?
I think there is an API Reference, but the whole process is not documented. ...
5
votes
2answers
1k views
NSTextView not showing red misspelling underlines when on a layer
When an NSTextView is a subview of an NSView that is layer-backed (-wantsLayer == YES), it does not render the squiggly red underlines for misspelled words. All it takes to reproduce this is to make ...
4
votes
1answer
147 views
NSTextAttachmentCell is a mile high
I'm editing a subset of HTML in an NSTextView[1] and I want to simulate an <hr> tag.
I've figured out that the way to do it is with NSTextAttachment and a custom NSTextAttachmentCell, and have ...
4
votes
2answers
2k views
How does line spacing work in Core Text? (and why is it different from NSLayoutManager?)
I'm trying to draw text using Core Text functions, with a line spacing that's as close as possible to what it would be if I used NSTextView.
Take this font as an example:
NSFont *font = [NSFont ...
4
votes
1answer
2k views
NSTextField or NSTextView?
Could someone explain to me what are the main differences between NSTextField and NSTextView? I know that NSTextView has more features and is usually used for longer texts, and NSTextField is usually ...
4
votes
3answers
2k views
NSTextView syntax highlighting
I'm working on a Cocoa text editor which uses an NSTextView. Is it possible to change the color of certain portions of the text?
3
votes
1answer
64 views
At what level is selection handled in the Cocoa text system?
I noticed that if you hook up two NSTextViews to the same NSTextStorage object, you can select across the two and copy/undo/etc. as if they were one. At what level is this all managed? Where should I ...
3
votes
1answer
138 views
How to convert NSTextView RTFD data to plain text in cocoa
I have one NSTextView containing formatted text and embedded images like following.
I want convert above into plain text like following:
Hi this is test data (...picture...)This is colored text.
...
3
votes
1answer
238 views
Cocoa Text - refreshing text on-the-fly
In an app I'm working on, the user inputs plain text, and the app reformats the text by transforming it to an NSAttributedString, and displays it. This all happens live.
Currently, I'm doing the ...
3
votes
1answer
181 views
Crazy Font Issue with NSTextView
I'm knee deep in font metrics with NSTextView at the moment. I was hoping a developer here could shed some light as to what's going on.
With Myriad Pro in a default NSTextView (dragged from IB and ...
3
votes
1answer
710 views
Faking an NSTextField using an NSTextView to get nice coloring?
Trying to change the selected text background color for an NSTextField (we have a dark UI, and selected text background is almost the same as the text itself), but only NSTextView seems to allow us to ...
3
votes
2answers
621 views
How to resize NSTextView according to its content?
I am trying to set an attributed string within NSTextView. I want to increase its height based on its content, initially it is set to some default value.
So I tried this method:
I set content in ...
3
votes
1answer
281 views
What's the equivalent “sizeWithFont: ” method for the Mac?
I'm familiar with sizeWithFont: for the iPhone. Now I'm trying to build an app for the Mac and need something like that, but I don't know how to do it :/
Here's why I need it: I've got a panel that ...
2
votes
1answer
46 views
How to use NSTextView as a log console from a thread?
I am running another processing thread, and I would like to log results to a NSTextView, that when a new line is posted, it updates the view and positions the scrollbar to the bottom.
Any suggestions?
...
2
votes
1answer
141 views
NSView receiving click events thru a NSTextView
I have a NSTextView, non-editable, non-selectable, in a NSView. I need the NSView to receive click events when the text view is clicked - basically I need the click events to act as though the text ...
2
votes
1answer
235 views
how to toggle rich text formatting in NSTextView programmatically in cocoa
I want to toggle rich text formatting in NSTextView. I have tried following:
[contentView setRichText:NO];
[contentView setImportsGraphics:NO];
but, that didn't changed the NSTextView content and ...
2
votes
1answer
84 views
Most efficient way to pull first non-whitespace line from NSTextView?
What is the most efficient way to pull the first non-whitespace line from an NSTextView?
For example, if the text is:
\n
\n
\n
This is the text I want \n
\n
Foo bar \n
\n
The ...
2
votes
2answers
109 views
Reading a text file from desktop at app startup
I need to display the contents of a text file located on the user's desktop in an NSTextView at startup . My code is not working -- is it off track?
NSError *err = nil;
NSString *filepath = ...
2
votes
1answer
173 views
How to programmatically add bullet list to NSTextView
The question may sound strange but I've been struggling with it for a few days.
I have a NSTextView that can display some text with a few formatting options. One of them is the ability to turn on/off ...
2
votes
3answers
289 views
How to find the text in an NSTextView?
I need to find the text in an NSTextView, and save it to a file. I can do the saving fine. I have used -stringValue, and -textStorage so far, but neither have worked. When I put -stringValue in, it ...
2
votes
2answers
544 views
NSTextView insert image in between text
Is it possible to insert an image (not a background image) into an NSTextView?
Something like:
Hi :) How are you?
and it should display a "smiley" image. I have an NSTextView and an NSImage.
2
votes
1answer
369 views
How to autoscroll NSTextView in Cocoa to center text vertically on the window?
I'm creating a text editor with a NSTextView inside a NSScrollView and would like to automatically scroll the textview whenever the user inserts some text, so that the inserted text is vertically ...
2
votes
1answer
191 views
How Can I Know When NSTextView Loses Focus?
I want to clear the selection of NSTextView after it loses focus. How can I achieve that? Thanks in advance!
Kai.
2
votes
1answer
165 views
NSTextView - drawing custom glyphs that can't be edited
I'm making an outliner using NSTextView. The outline: method on NSTextView doesn't quite capture what I need, so I've rolled my own using the typesetter/formatter. Now, I need to show the outline ...
2
votes
2answers
466 views
How is a paragraph defined in an NSAttributedString?
I see that there is an attribute name (NSParagraphStyleAttributeName) for applying paragraph styles to text in Cocoa. Text is stored in an NSAttributedString, but what defines a "paragraph" in that ...
2
votes
1answer
168 views
How to subvert NSTextView's “smart” copy & paste, which is adding unwanted whitespace?
If I double-click on a word inside my NSTextField, it selects the entire word, which is good. If I then paste that word elsewhere in the document, it adds a space before it pastes, which is unwanted ...
2
votes
1answer
130 views
Setting an attribute with range length of zero on NSTextView?
Is it possible to set an attribute with a range of zero on an attributed string? For example, if I set the foreground color attribute to red at NSMakeRange(0, 0) I would expect once I begin typing at ...
2
votes
2answers
653 views
How to disable word-wrap of NSTextView?
NSTextView does word-wrap by default. How can I disable this?
I'm making a JSON code viewer, so I have to disable this.
2
votes
2answers
218 views
How can I make the Tab key move focus out of a NSTextView?
I'm using an NSTextView to allow multi-line input. However, due to the nature of my app, users will be more comfortable moving to the next input element when they press TAB.
How can I make TAB exit ...
2
votes
4answers
966 views
How to change only font size for the whole styled text in NSTextView
I need to set a text size (for example to 42) of the selected rich text which uses multiple fonts.
I imagine I can check attributes of each group of characters, modify the font size and set ...
2
votes
1answer
158 views
Location on screen of location in NSTextView
I want to get the screen location (NSPoint) of a point in an NSTextView, this should be simple, but by results are always a bit off, the X is perfect, but the Y seems to vary.
I've tried a few ...
2
votes
2answers
538 views
Data Detectors in Cocoa
I want to add a data detector in an NSTextField / NSTextView like in Mail (e.g. date, email, URL, etc).
Does anyone have an idea how to do this ? I think I saw it in TextEdit's source code but when I ...
2
votes
1answer
761 views
How to find caret position in an NSTextView?
I've an NSTextView with with several semi-colon separated strings. I need to find on which of those strings the caret has been placed. How could I do that?
2
votes
3answers
1k views
NSTextView won't respond to setString
I'm new to Cocoa, and I've been having a problem that is absolutely maddening. I'm trying to write a simple NSString to an NSTextView, and for some reason it just won't respond. No compiler ...
2
votes
1answer
277 views
How do I find the pixel position of a character in an NSTextView?
I'm currently using the following code to fetch the logical NSView position of glyphs which is working fine however it seems a bit slow and the positions aren't precisely on the character kerning ...
2
votes
3answers
621 views
NSTextView not refreshed properly on scrolling
Greetings,
I have a NSTextView with a sizeable quantity of text. Whenever I scroll however, the view isn't updated properly. There are some artifacts that remain at the top or the bottom of the view. ...
1
vote
1answer
35 views
Is it possible to change the header height of an NSTextView?
I am saving a PDF from an NSTextview and putting a logo in the header. I overrode pageHeader and the logo appears but it is clipped.
Is it possible to change the header height of an NSTextView?
...
1
vote
0answers
23 views
NSComboBox & NSTextView: save textview value to model on combo box value change
While I'm quite experienced with developing iOS applications, I'm still a bit of a newbie with regards to Mac OS X application development.
The issue I'm having is the following ...
I've created a ...
1
vote
1answer
60 views
How to handle NSTextView preferences (spelling and grammar, substitutions,…)
The NSTextView class allows the user to dis-/enable features like "spelling while typing" with the context menu (right click). But when I use a NSTextView in my own app, those preferences are not ...
1
vote
0answers
24 views
RTFD Data Equality Check
I'm using the function below to set new rtfd data to an attribute of type binary in a core data entity.
If its not equal, then I set the data to the managed object.
The problem here is that the ...
1
vote
0answers
37 views
NSTextView extremely sluggish
I'm using NSTextView controls in my app for capturing free format richt text. These controls are all bound to attributes of Core Data entities (attributes are of type NSData).
The behaviour of text ...
1
vote
1answer
48 views
How to implement undo/redo with programatic change of the textValue of a NSTextView?
I created a simple demo app with a NSTextView and a button, the provided a NSTextViewDelegate to the textView and added an action:
- (IBAction)actionButtonClicked:(id)sender {
NSString *oldText = ...
1
vote
3answers
91 views
Deselect text in an NSTextView programmatically?
I am using the following code to deselect an NSTextView, as suggested here. Unfortunately, nothing at all happens. I have tried what I know to debug it, but everything seems to be working correctly, ...
1
vote
1answer
64 views
How can you intercept pasting into a NSTextView to remove unsupported formatting?
I'm trying to create a simple NSTextView-based window for simple WYSIWYG editing. However, I only want to allow certain types of formatting (e.g. Bold, Italic, Underline and a single heading type but ...
1
vote
2answers
33 views
How can I set the color of ALL text in a NSTextView (rather than just text typed afterwards)
I want to change the color of ALL the text in a NSTextView.
Currently, I have code doing this:
NSMutableDictionary* fontAttributes = [[NSMutableDictionary alloc] init];
[fontAttributes setObject: ...
1
vote
2answers
68 views
How do I disable these keyboard shortcuts in a NSTextView?
I have an NSTextView which I'm kind of using as a full-screen canvas for letters.
The following key combinations do things that I don't want to do (e.g. hide my window, lock up the computer).
How ...
1
vote
1answer
57 views
NSTextView scrolling behavior and selecting behavior
I have an NSTextView that I'm outputting text from NSTask. Everything works as expected except the scrolling and selecting behaviors.
1: If I try to scroll up, the position of my scroll snaps back to ...
1
vote
0answers
135 views
How to implement a custom Focus Ring in drawRect for NSTextField or NSTextVew
I want to draw a custom focus ring for my NSTextView subclass (which doesn't have a focus ring by default). I managed to implement it by overriding the parent NSScrollView drawRect and adding this ...