Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
80 views

NSTokenField does not check token on blur

I have an NSTokenField which allows the user to select contacts (Just like in Mail.app). So the NSTextField is bound to an array in my model.recipient instance variable. The user can now select an ...
3
votes
1answer
97 views

How to validate all tokens are valid in an NSTokenField

Apple have conveniently created a callback method that allows you to check that the new tokens that are being added to an NSTokenField are valid: - (NSArray *)tokenField:(NSTokenField *)tokenField ...
2
votes
1answer
68 views

NSTokenFieldCell in NSTableView crashes when tabbing, is it a bug?

I was having trouble with NSTokenFieldCell, so I proceeded to create a new project in Xcode to isolate the problem. Here is what I did: Dropped a NSTableView into the main window; selected the ...
2
votes
0answers
90 views

Autocomplete window appearing in wrong place for NSTokenField

I have a layer-backed NSTokenField that is in a NSSplitView. The split is initially collapsed, with the token field hidden. When I reveal the token field, it works properly, except that the ...
2
votes
3answers
373 views

NSTokenField representing Core Data to-many relationship

I'm having a problem figuring out how to represent a many-to-many relationship model in a NSTokenField. I have two (relevant) models: Item Tag An item can have many tags and a tag can have many ...
2
votes
2answers
85 views

NSTokenField tokens disappear when mouse leaves non-selected NSTokenField

Weird UI bug that is exactly what is reported at this link: http://www.mail-archive.com/cocoa-dev@lists.apple.com/msg53307.html The tokens in my NSTokenField disappear if I move the mouse into the ...
1
vote
0answers
21 views

NSFormatter and NSTokenField and setting the maximum length

I would like to use a custom NSFormatter to judge the length of a string inside of a NSTokenField. I have implemented the NSFormatter and hooked it up within the xib and all that, now when I get to ...
1
vote
0answers
39 views

flexible alternative to NSTokenField?

I am trying to customize an NSTokenField and after trying several hours I realized that NSTokenField is not customizable enough (at least using public methods). Do you know an alternative to ...
1
vote
0answers
33 views

NSTokenField for WinForms

Is there an available NSTokenField replacement from Mac OS X that I can use with WinForms? I would like to be able to add them by just manipulating the string with my tokens like this: "$MyToken$" ...
1
vote
1answer
57 views

Deleting the entered names in the “TO” field using NSTokenField

I am working with NSTokenField, the requirement is similar to apple mail application. I have delegate methods to format the strings and add to the field. Do i get any delegate method for deletion of ...
1
vote
1answer
115 views

How to do a mixed input NSTokenField

I'm trying to get an NSTokenField working that allows editing similar to the post here (http://stackoverflow.com/questions/4244909/nstokenfield-with-mixed-token-string-input-possible) The answer that ...
1
vote
1answer
285 views

NSTokenField delegate

In Apple's "Token Field Programming Guide for Cocoa" in section "Basic Interaction With the Delegate" tells that when the user type some text in token field the delegate receives the ...
1
vote
2answers
226 views

Clicking token in NSTokenField

Is it possible to get an event when you click on a token in a NSTokenField?
1
vote
2answers
332 views

NSTokenField with mixed token/string input, possible?

When entering an invalid email in Mail's NSTokenField one get's this (a mix of token and plain string values): Is there any recommendable way to accomplish this? Is NSTokenField even the right tool ...
1
vote
1answer
184 views

Resizing NSTokenField after populating with tokens

I am using an NSTokenField as a way for users to enter tags. Everything works fine and it hooks up with CoreData managing the tags both when the user adds or deletes a tag. I recently added logic so ...
1
vote
1answer
245 views

NSTokenFieldCell Subclass to force use of Core Data To-Many Relationship

I have come across an interesting conundrum (of course, I could just being doing something horribly wrong). I would like an NSTokenField to "represent" a relationship in a Core Data Application. The ...
1
vote
2answers
336 views

how to customize NSTokenField like in “To/ CC” fields in mac mail?

I am able to work with NSTokenField, it is easy to use.. but I want your suggestions on how can I customize it just like it is in "To/ CC" fields in mac mail ie. when no. of tokens in a token field ...
1
vote
2answers
186 views

Qt Equivalent of NSTokenField

Is there an equivalent class/method for use in Qt that resembles Cocoa's NSTokenField? Dan;
1
vote
2answers
4k views

Custom UITextField/UIButton

What I'm trying to do is replicate the NSTokenField like UITextField seen in the Mail app and Messages app (type a contact and it comes up with suggestions). I've got the autocompleting working ...
1
vote
2answers
97 views

Java TokenField like Cocoa's?

Does anyone know of an existing Java component that implements a TokenField, similar to Cocoa's NSTokenField? An overview of the Cocoa control is at: ...
1
vote
1answer
552 views

Populate an NSTokenField with tokens from a container of objects

I have an NSTableView and an NSTokenField in a window. I have implemented the following delegate methods: tokenField:completionsForSubstring:indexOfToken:indexOfSelectedItem: ...
0
votes
0answers
15 views

NSTokenField : get validated tokens

I am looking for a programmatical way (not using bindings) to get the validated tokens of an NSTokenField. I am using at the present time the objectValue but it contains also the token which is ...
0
votes
1answer
60 views

NSTokenField and deleting tokens

My app allows users to attach tags to certain model objects (subclasses of NSManagedObject). The Tag class is also a subclass of NSManagedObject. I decided to use NSTokenField to display the tags, ...
0
votes
1answer
68 views

NSTokenField does not let me type other strings than tokenField:completionsForSubstring:… returns

My issue is that NSTokenField does not allow me to type any text I want, it's only allow me to type strings that are included in the NSArray that ...
0
votes
1answer
117 views

Autocomplete with twitter usernames in text field (cocoa)

I was looking at NSTokenField, NSTextField and NSTextView with no luck to do the following: I am writing a Twtitter client and when you want to twitter a new Tweet then you begin to write in a text ...
0
votes
1answer
130 views

Custom-drawn tokens in NSTokenField

Is there a way to have custom tokens inside an NSTokenField? By "custom" I mean I would like to draw them in a custom way -- custom hover, background image, etc.
0
votes
0answers
73 views

Fix behaviour of NSTokenField when user presses right arrow key on keyboard

Trying to make a text field that works like the Mail.app application. One minor but important difference appears to be that in mail, if you start typing an email address, ie Jaso and auto complete ...
0
votes
0answers
94 views

Binding NSTokenField to array controller

I have an array controller and a token field for data entry. I can't find a way to use the token field to bind a tokenized text to the array controller. The problem is when I use a token field ...
0
votes
0answers
99 views

Setting tooltip of NSTokenField based on NSTokenFieldCell under cursor

I have an NSTokenField and would like its tooltip to change depending on which token is under the cursor. I'm working with OSX 10.6.x. I've tried variations of subclassing each of NSTokenField and ...
0
votes
1answer
129 views

NSTokenField Suggest but don't complete

I feel like this must be a common issue that I'm just struggling to figure out, but I couldn't find anyone else who asked the question so... Basically I have an NSTokenField and when the user begins ...
0
votes
1answer
125 views

I would like to insert token at the insertion point of the cursor, not the end of the array

I have a button that adds a token to a NSTokenField. It adds the token always to the end of the field: NSTokenField *currentField = [sender representedObject]; // Determine which token should ...
0
votes
2answers
301 views

Making skype like token field for adding users to a chat

In Mac, in skype when we add users to an existing chat, by clicking '+' button on top, a beak like window appears carrying a token field like control. When an user types some name in it and a match is ...
0
votes
1answer
755 views

Mail.app like NSTokenField for names and emails

Hey guys! I want to build a NSTokenField that works just like the recipient field in Mail.app. I know how to search the address book for names and emails. These are probably really bad noob questions, ...
0
votes
1answer
570 views

NSTokenField autocomplete

I'm creating an application which uses an NSTokenField. I need autocompletion. I'm using an NSURLRequest to request data from ...
0
votes
1answer
401 views

Multiline NSTokenField and the return key

I have a NSTokenField object with multilines (just resized the control vertically in interface builder). Unfortunately the NSTokenField object does not insert new line when pressing the return key. ...
0
votes
2answers
236 views

Scroll bars in NSTokenField

Is it possible to get scroll bars on an NSTokenField when there are too many items to display? I've tried embedding it in a scroll view but it doesn't work. Thanks