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 ...

learn more… | top users | synonyms

0
votes
0answers
8 views

NSRuleEditor handle return key?

When using a NSRuleEditor I would like to perform an action when the user hits the return key inside of a text field. My thought was that I could enumerate the templateRows find the UI component and ...
0
votes
0answers
20 views

NSTextView's NSTextStorage coming back null

I am following the OSX tutorial series on developer.apple.com and have run into a problem. When I paste or type text into the NSTextView and try to send it to the general pasteboard, the NSTextView ...
3
votes
1answer
19 views

Unexpected behavior of NSTextView (because of titlebar-less NSWindow?)

I have a NSWindow (my main window) and a child window (positioned NSWindowBelow the main window) that has a NSTextView. The child window doesn't have a title bar, nor shadow and its transparent. ...
4
votes
0answers
90 views

Change FocusRing color of NSTextField, NSTextView

How to change focusRing color from Blue to Red. (This question is in continuation with Generic validation on input, here instead of setting a default blue focus, I need red one.) The default looks ...
1
vote
1answer
20 views

How do I disable drag and drop on NSTextView?

I have a NSWindowController that contains several NSViewControllers. I would like to universally accept drag and drop events with the NSWindowController class and not be intercepted by other views ...
-2
votes
1answer
32 views

Auto scrolling to the end of NSTextView

I have a NSTextView on which I am appending console logs. I have implemented this UI in XIB file with scroll views. When my application appends the console logs in the text view, I want the scroll bar ...
1
vote
1answer
28 views

NSTextview: How do I get the glyph rect of the insertion point ? Custom TextView?

I can't seem to find any documentation about how to get the rect of the insertion point. I'm trying to display a view (like auto-complete) directly below the text caret / insertion point I'm ...
1
vote
0answers
56 views

Laying out text in NSTextView around a subview

What I’m trying to do is have an NSTextView and add custom NSView subviews to it, but have it so the text can layout around the subviews. Right now, I can easily add a subview to the textview but of ...
2
votes
2answers
78 views

How to convert formatted content of NSTextView to string

I need transfer content of NSTextView from Mac app to iOS app. I'm using XML as transfered file format. So I need to save content of NSTextView (text, fonts, colors atd.) as a string. Is there any ...
0
votes
0answers
7 views

NSTextfield no longer responds to backgroundColor assignment

I have this line in my code which reassigns the textField's background color in my code. textFieldColour.backgroundColor = [self colorFromRGB:redVal G:greenVal B:blueVal]; It used to work, but ...
0
votes
1answer
17 views

NSLeftTextAlignment with spaces at end of string

if I sets NSCenterTextAlignment for my NSTextView my whitespaces at the end of string magically disappears for example I have string @"while " if I display it with NSRightTextAlignment it ...
0
votes
2answers
36 views

mouseDragged: is not passed down two subviews?

I am writing a program that has a number of subclassed NSViews (Frame) with varying contents that can be dragged around by the mouse in their superview. All of the views contain one subview, called ...
0
votes
1answer
31 views

What are all the tld's recognized by NSDataDetector?

When testing Cocoa data detector I found that forecast.io isn't picked up but www.forecast.io and forecast.com are. What are all the top level domains found by NSDataDetector without prefixing them ...
4
votes
1answer
86 views

How can I set [NSTextView selectedTextAttributes] on a background window?

The default value for [NSTextView selectedTextAttributes] is unusable in my app, because i allow the user to select colors (syntax highlighting) that are almost exactly the same as the background ...
0
votes
0answers
28 views

Vertical Text draw in NSTextView? [duplicate]

I need to draw vertical text in NSTextView. Eg: if string = "HAI" i need to draw it as, H A I in an NSTextView. By searching, I got that by setting kCTVerticalFormsAttributeName to true we can draw ...
0
votes
0answers
58 views

Can't draw vertical text in NSTextView?

I am trying to draw characters of the string "Vertically" in a NSTextView. Tried to use "\n" after each characters, i am able to draw but the problem is Alignment of the text & font size effects ...
1
vote
2answers
26 views

Prefered keystroke for ending NSTextView edit

Is there prefered keystroke for ending edit of an NSTextVIew? Obvious candidates are ESCape and Return with modifier key. I'd like this to be fairly intuitive and easy to type. Of course for people ...
0
votes
0answers
21 views

Saving and restoring NSTextView's position

I want to be able to save the current text and visible region of an NSTextView and restore it. Using visibleRect and scrollRectToVisible: seems to deliver inconsistent results. If I just do: - ...
0
votes
1answer
21 views

NSTextView inherits parents view background on update

I have a NSTextView that I am using to display a timer. This timer updates every second counting down to 00:00. When the timer updates the string for the NSTextView, the NSTextView acts as if it ...
0
votes
0answers
30 views

how to bind textview line spacing with NSSlider?

I'm trying to add NSSlider to increase/decrease the text view line spacing. I was not able to bind the slider with the line spacing property. Is there any way to achieve it?
0
votes
1answer
60 views

How to insert a NSButton into a NSTextView? (inline)

I have a NSTextView and a custom NSButton. What I want to do is to insert that button (60x16 in size) to the end of the NSTextView. How can I do something like that? I've been trying to search around ...
1
vote
1answer
41 views

Writing data from multiple NSTextView element into a single file

I have a simple application with 4 NSTextView element. I would like to be able to write a content of these views into a single file. What I am doing write know I am getting the NSData out of each of ...
1
vote
0answers
34 views

Custom insertion point for NSTextView

I'm changing the insertion point size by overriding -(void)drawInsertionPointInRect:(NSRect)aRect color:(NSColor *)aColor turnedOn:(BOOL)flag, But it doesn't handle the first blink (when you move the ...
0
votes
0answers
33 views

How to change the Line between NSTextView and NSRulerView

I want to change the color of the small line between the NSTextView and my CustomNSRulerView. Is that possible?
0
votes
0answers
16 views

Find words in NSTextView

How can i get all the ranges of an specific word in the "NSTextView"? With NSRange range = [text rangeOfString:@"void"]; I only get the range of the first word in the view. Thanks for help.
0
votes
0answers
19 views

Noodlesoft LineNumber View

In the noodlesoft project I always get "The run destination My Mac 64–bit is not valid for Running the scheme 'Line View Test'.". If I put the code in my class, i get no error but there is no change ...
0
votes
0answers
22 views

Handle textDidChange Method in NSTextView

I want trigger the event if the text is changing in my NSTextView. Is there a way to trigger that directly from the NSTextView or I have to create a custom Class for the NSTextView?
0
votes
0answers
35 views

Create Custom NSTextView

I have created a Custom NSTextView. Its called: CodrScriptView Here is the code of the .m and .h file: @implementation CodrScriptView - (void)customize { [scriptView ...
0
votes
1answer
78 views

Scrolling NSTextView to bottom

I'm making a little server app for OS X and I'm using an NSTextView to log some info about connected clients. Whenever I need to log something I'm appending the new message to the text of the ...
0
votes
2answers
101 views

NSTextView keyDown Event

I want trigger the keyDown Event with every Key action. Therefore I have created a subclass of NSView. @interface CodrTextView : NSView { NSTextField *lineNumberSpace; NSTextView ...
0
votes
1answer
44 views

Proper way to replace NSTextStorage in NSTextView?

I am making some text viewer app. Currently I need very frequent and precise line handling ability, so I want to subclass NSTextStorage class. But I couldn't find any method to set a new text storage ...
0
votes
0answers
50 views

Best way to add NSTextView to cell based NSTableView?

Due to specific requirements to my application I have to use NSTextView to handle user input. I can't use view based table views since I want to support OS X 10.6. When cell becomes editable it ...
2
votes
1answer
75 views

NSTextView in NSPersistentDocument doesn't update dirty flag until loses first responder

I have an NSTextView in an NSPersistentDocument window. I bind the text field's contents to a "binary data" Core Data field, but when I type text into the text view, the document's title bar doesn't ...
0
votes
0answers
33 views

cursorUpdate called, but cursor not updated

I have been working on this for hours, have no idea what went wrong. I want a custom cursor for a button which is a subview of NSTextView, I add a tracking area and send the cursorUpdate message when ...
1
vote
1answer
56 views

Change the Color of specific substrings in NSTextView

I want to change the color of specific text in NSTextView. The method should check that after a keydown event. For example: the word void is finished and the string void changes the color to blue. ...
0
votes
0answers
33 views

NSTextView double vision

I must be doing something wrong here: My Cocoa app has a scrollview around a custom view which in turn has a textview. I only expect to see one "This is a " string but there the extra one up in the ...
0
votes
1answer
126 views

Improving performance on NSTextView syntax highlighting via NSAttributedString

I'm working on adding some syntax highlighting to an app. In a testing class, I currently have an NSTextView with the textDidChange notification. Similar to this: -(void)textDidChange:(NSNotification ...
0
votes
0answers
90 views

Syntax Highlighting on a NSTextField

In my app I have a view-based table view with little snippets of syntax highlighted code in each cell. I would normally present the colored code with an NSTextView but considered that I might have 10 ...
1
vote
1answer
33 views

How to implement NSResponder action message selectWord?

I see selectWord: as an NSResponder action message and I naively assume that if I implement selectWord: on my subclass of NSTextView I can then catch word selection (via a double mouse click). But of ...
2
votes
1answer
89 views

NSTextView color and font reset after clearing it

I set some default font and color to a NSTextView inside of a NSPanel. However, when I clear the view with setString:@"", not only does the text disappears, but all the default colors/fonts ...
0
votes
0answers
43 views

Display content of large file in NSTextView

I'm trying to work with large files e.g. > 1Gb and NSTextView. Of course I do not want to load whole file into memory, but load only the "visible window" of lets say of 4mb. Does anyone tried this ...
1
vote
1answer
30 views

Undo moves cursor to end of NSTextView

I have an NSTextView on the window of an NSPersistentDocument. If I make changes in the text area and Undo them, the changes revert, but the cursor always moves to the end of the text. How do I ...
1
vote
1answer
32 views

How to access application's shared NSTextView

I want to add a menu item to all text field's contextual menu. I can do it if I get a hold of the internal field editor of type NSTextView used by all NSTextField's through out the application. The ...
0
votes
1answer
31 views

Get command input from NSTextView

OK, this what I have in mind : I have an NSTextView I'm using as a "Console"/"Terminal" I want to be able to process user input on "enter" When user enters something and presses "return", I want to ...
2
votes
2answers
83 views

Append to NSTextView and scroll

OK, what I need should have been very simple. However, I've looked everywhere and I'm not sure I've found something that works 100% (and it's something that has troubled me in the past too). So, here ...
0
votes
3answers
122 views

Changing the font of the selected text in Objective-C

I'm trying to create a custom “Change font” NSPopupButton for a Mac App (not an iOS App). I can detect a change in font selection: long fontItemIndex = [fontPopup indexOfSelectedItem]; NSMenuItem ...
2
votes
1answer
42 views

How to customize cursor in NSSearchField?

This seems it should be easy enough, but could anyone give me pointers on how to do this? Seems I should be subclassing NSTextView and using drawInsertionPointInRect:color:turnedOn: but how would I ...
0
votes
0answers
31 views

NSTextView strange selectedText behaviour

When I programmatically set a selected range of an NSTextView using [_textViewA setSelectedRange:phraseRange]; the selection color is gray instead of the system-default blue. Why is this? So then ...
0
votes
1answer
78 views

Shell Command output in NSTextView

Thanks for the help. The results of this executed command is displayed in my Xcode Console. What's the best way to get the results of the command to be displayed in an NSTextView? NSString ...
2
votes
1answer
32 views

How to set speed for scrollToEndOfDocument with objective c in mac os

How can i set speed for scrollToEndOfDocument of NSTextView or WebView in Mac os ? Thanks you

1 2 3 4 5 8