1
vote
1answer
18 views
Bindings MInefield in Xcode and Interface Builder.
All right, after having worked through Cocoa Dev Central's "Build a Core Data Application" tutorial I started experimenting with building my own application, using the code and .nib file from the …
0
votes
2answers
37 views
How to stop NSScrollView from scrolling to top when horizontally resizing contained NSTextView?
I have a NSTextView that I want to display a horizontal scroll bar. Following some leads on the internet, I have most of it working, except that I am having problems with the vertical scroll bar.
…
1
vote
1answer
21 views
NSTextView non-editable areas of text?
Hi,
I have an NSTextView that contains data for the user to edit, but I want to surround it with a header and footer of non-editable data to give the user an idea of context.
I don't think an …
1
vote
1answer
38 views
How to find caret position in an NSTextView?
Hi all,
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?
7
votes
2answers
195 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 …
0
votes
0answers
19 views
Making NSCollectionViewItem auto resize with NSTextView
I have an NSCollectionViewItem whose view contains a NSTextView. I want the view to automatically resize to display all the contents of the NSTextView. Is there a method to do this?
Thanks
1
vote
1answer
154 views
Core Data bindings with subviews and multiple NIBs
I have a document-based Core Data app. My main Core Data entity has several string fields, most of which are bound to NSTextFields, but one is bound to an NSTextView.
I am using the technique for …
0
votes
2answers
68 views
NSpoint from NSTextView insertion point
I have an NSTextView and require the coordinates of the insertion point to display a view there upon user interaction.
There is a function to get the character index from an NSPoint. I am wondering …
1
vote
3answers
172 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 …
0
votes
0answers
48 views
Why NSTextView with no code produces memory leaks in Snow Leopard?
Hi! I can't figure out why a NSTextView created with IB in an empty Cocoa application project produces memory leaks when I type in it. I created a new project, then I drew a NSTextView in IB; I …
3
votes
4answers
489 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 …
2
votes
3answers
209 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
91 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 …
1
vote
2answers
257 views
Disable Option-Enter line breaks in NSTextField?
I want to disallow entering a new-line character in my NSTextField, which by default is possible by typing Option-Enter (or Option-Return).
While I found some pages explaining how to allow line …
