Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
2k views

Selection Highlight in NSCollectionView

On some occasions my head just hurts from banging it against the Cocoa wall. Today is one of those days. I have a working NSCollectionView with one minor, but critical, exception. Getting and ...
3
votes
1answer
525 views

NSCollectionView draws nothing

I'm trying to set up an NSCollectionView (I have done this successfully in the past, but for some reason it fails this time). I have a model class called "TestModel", and it has an NSString property ...
2
votes
3answers
409 views

Binding to NSCollectionViewItem crashes Xcode

Using XCode 4.1 I've come across a crash whenever I try to use a CollectionView. These are the steps I'm doing: From a new project, edit the MainMenu.nib file. Add an NSCollectionView to the ...
2
votes
1answer
346 views

NSCollectionViewItem double-click action?

How do I set an action for when a user double clicks an NSCollectionViewItem. NSTableView, for example, has the setDoubleAction method. Is there something similar for NSCollectionView? Thanks
1
vote
1answer
122 views

Custom outlets in NSCollectionViewItem subclass

I feel this being a simple task, but I don't seem to be able to make it work. I'm trying to have a NSCollectionView with custom items. I added another NSImageView to the custom view of the item, and I ...
1
vote
2answers
249 views

How do you initialize a NSCollectionViewItem?

I am trying to setup an NSCollectionView that has custom drawing in the individual NSCollectionViewItem views. I have an image that I need to draw in each view, but I cannot link the view back to the ...
1
vote
0answers
107 views

NSTableView Drag & Drop not working inside of an NSCollectionViewItem

I have a NSCollectionView and inside of the NSCollectionViewItems there is a label and a NSTableView. The NSTableViews are working properly EXCEPT for the drag & drop methods ...
1
vote
0answers
66 views

How do you access an outlet in a collectionitem?

I have an NSCollectionView which is populated by collection items. An array controller is used to add the items to the view. Each item has two outlets, an imageview and textview (not field), that the ...
1
vote
1answer
301 views

Using NSCollectionView without bindings

Is there a way to use an NSCollectionView without bindings?
1
vote
1answer
143 views

Passing values from custom NSView to NSCollectionViewItem

I have an NSTabView inside my custom NSView that is used as the prototype for the NSCollectionView. In the second tab I have NSButton button and NSImageView objects. NSButton is a "Browse" button ...
1
vote
1answer
223 views

want to remove a specific collectionview item with the remove button on that view

I have a collection view item and its prototype view. Within that prototype view I have a little x button. I want that button to remove the exact collection view item that it is on top of. I can ...
0
votes
0answers
8 views

All NSCollectionViewItem On Button Click Flip At a Time In MacOSX Application

How it is Possible After adding item in NSCollectionView on NSButton click all the NSCollectionViewItem are Flip At A Time please send me some sample code please Help me.
0
votes
0answers
11 views

on Double Click of NSCollectionViewItem open new window or view NSCollectionViewItem in same window

How to open a new window or view on double click of NSCollectionViewItem? My collectionViewItem is custom class derive from my NSBox so how to open can you please help me? And please send me some ...
0
votes
0answers
17 views

bindings retain cycle created when adding and removing my object from a NSCollectionView

Situation: I have a custom control developed that I embed with in a MyClipObject that I use as the content for a collectionViewItem prototype that is used within a NSCollectionView. I have other ...
0
votes
2answers
93 views

Get index of a view inside a NSCollectionView?

I've developed an app for Mac OS X Lion using its new view-based NSTableView, but as I want to port the whole app to Snow Leopard I'm trying to figure out the best way to emulate such a tableview. So ...
0
votes
0answers
36 views

NSIconCollectionViewItem and drop

I want to drop file onto my collectionViewItem. I tried to set methods as explained on Apple documentation with: [self registerForDraggedTypes:[NSArray arrayWithObjects: NSFilenamesPboardType, ...
0
votes
0answers
115 views

NSCollectionViewItem subclass was registering as an observer, now isn't

Alright, this one's got me baffled. I have and NSCollectionViewItem subclass which was registering as an observer of a property of its parent collection view. After implementing drag and drop on the ...
0
votes
0answers
125 views

NSCollectionView avoid NSBeep(); when delete key is pressed on selected item

how can avoid NSBeep() when I press delete key on a collection view item to delete it? My code: #import "CollectionViewRecents.h" @implementation CollectionViewRecents - (void)keyUp:(NSEvent*)event ...
0
votes
0answers
112 views

How do you add different collection items to a NSCollectionView?

I have successfully made a collection view which holds one of my collection items but I have another item of the same size but different content which I would also like to add alongside the other ...
0
votes
1answer
206 views

NSView subclass for NSCollectionViewItem's item outlet not drawing consistently

I have searched everywhere for this one but have had no luck. I am using an NSCollectionView in my project with bindings to Core Data via an Array Controller. In order to make it look the way I want I ...
0
votes
3answers
246 views

Custom control in NSCollectionViewItem

I want to put a custom control inside the view for my NSCollectionViewItem. Lets say I have a custom NSView called BoxesView.BoxesView is just a view that draws a predetermined number of boxes in its ...
0
votes
1answer
346 views

Redrawing NSCollectionView on Scroll Causes Breakup of Graphics

I have a minor irritant in an NSCollectionView in which the NSCollectionViewItem's break up visually when I scroll the window. The rate of breakup depends upon the rate of scrolling. For example, if ...
0
votes
1answer
461 views

Resize view of NSCollectionViewItem

How do I programatically set the size of a view of an NSCollectionViewItem? I tried doing this in an NSCollectionView subclass: @implementation CustomCollectionView - (NSCollectionViewItem ...