Tagged Questions
The nscollectionview tag has no wiki summary.
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 ...
5
votes
2answers
842 views
Filter a collection with LINQ vs CollectionView
I want to filter a ObservableCollection with max 3000 items in a DataGrid with 6 columns. The user should be able to filter in an "&&"-way all 6 columns.
Should I use LINQ or a CollectionView ...
4
votes
1answer
162 views
Debugging Nested NSCollectionViews
I'm not really sure how to start debugging this issue.
I've got an NSCollectionView, whose NSCollectionViewItem prototype view itself contains an NSCollectionView (as well as an NSArrayController, to ...
4
votes
5answers
709 views
How do I implement a customized list in Cocoa?
I want to build a Cocoa App with a list of entries very similar to the ToDo list of Things.app (see the screencast). The question is whether I should use
a TableView,
a CollectionView or
a WebView.
...
3
votes
1answer
187 views
NSWindow not drawn until clicked, resized, etc
I have a window with an NSCollectionView created through Interface Builder. There is an NSArrayController that it bound to a CoreData backing store, which is populated at the time of launch by firing ...
3
votes
1answer
526 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 ...
3
votes
2answers
2k views
NSCollectionView in 10.6/Xcode 3.2
in Xcode 3.1.2 I used to load the nib of the NSCollectionViewItem in my subclass of NSCollectionViewItem like this:
-(id)copyWithZone:(NSZone *)zone
{
id result = [super copyWithZone:zone];
...
3
votes
1answer
1k views
How to use NSCollectionView and Outlets properly?
I'm desperatley trying to connect controls of NSViews which will reside in a NSCollectionView using outlets. The collection view is feeded using an NSArrayController.
I created the NSView in a ...
2
votes
0answers
36 views
How to create NSCollectionView programatically from scratch?
NSCollectionView remains one of the most mysterious parts of the Cocoa API that I've ever seen. Documentation is poor and there are many moving parts, many of which are often implemented in Interface ...
2
votes
1answer
282 views
NSPopover in NSCollectionView (or not)
I have a custom subclass of NSView that is used in an NSCollectionView.
The view shows a NSPopover when it is double clicked using the code below:
- (void)mouseDown:(NSEvent *)theEvent {
[super ...
2
votes
3answers
410 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
341 views
NSCollectionView Drag and Dropping: Most Delegate Events Not Getting Called
I have an NSCollectionView bound to an NSArrayController. I want to get drag and drop working, so I create a delegate and implement the methods
-(BOOL)collectionView:(NSCollectionView ...
2
votes
1answer
345 views
NSCollectionView with sections - like in iPhoto
I'd like to build a NSCollectionView similar to the one in iPhoto '11. I want to group several pictures in section, and create a section header as well. The section header of a specific section is ...
2
votes
1answer
303 views
Data-binding in a NSCollectionView
I've got a NSCollectionView for which I do have a dataArray and a selectedIndexes NSIndexSet defined in it's File's Owner. (Since I'm working with MonoMac on that project I've had some trouble working ...
2
votes
1answer
2k views
NSCollectionView for Cocoa-Touch (iPhone/iPad)
Is was starting to implement one but was wondering if somebody knows about an already existing NSCollectionView like class for cocoa touch.
2
votes
1answer
489 views
Can NSCollectionView autoresize the width of its subviews to display one column
I have an NSCollectionView that contains a collection of CustomViews. Initially it tiled the subviews into columns and rows like a grid. I then set the Columns property in IB to 1, so now it just ...
2
votes
1answer
347 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
2
votes
2answers
1k views
How do I bind programatically in the view subclass of my NSCollectionView?
I've successfully created an NSCollectionView and added a label to the view prototype in IB, bound to a property of my represented object. I now want to programatically create an NSButton and ...
1
vote
1answer
30 views
Creating No Empty Selections in NSCollectionView
I have set up an NSCollectionView in a cocoa application. I have subclassed the collection view's NSCollectionViewItem to send me a custom NSNotification when one of its views it selected / ...
1
vote
1answer
151 views
NSCollectionView doesn’t show its contents
What I want to do is create a simple NSCollectionView in my application and populate it with images.
I have managed to design/link everything in Interface Builder and I try to load an array of ...
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
0answers
126 views
Twitter-client-like NSCollectionView implementation on OS X (>=10.6)?
I'm trying to subclass a NSCollectionView which imitate the behaviors of UITableView as Twitter does.
I've been trying to subclass/hack AMCollectionView, which “has a lot less features.”
...
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
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
302 views
1
vote
0answers
388 views
NSView's context NSMenu is never shown even though all the right methods are being called
I have an NSCollectionView with a bunch of NSViews in it, stacked vertically, to make it look a bit like UIKit's UITableView. Everything works as expected, except for one thing:
When right-clicking ...
1
vote
0answers
155 views
cocoabinding a nstableview nested in nscollectionviewitem
I have a working Core Data app and I want to display a representation for some of the Entities. I have set up an NSCollectionView with the Interface Builder "Core Data Entity Assistant" to setup the ...
1
vote
2answers
242 views
Is NSCollectionView compatible with CoreData
Update:
This thread identifies a bug in NSCollectionView when the represented objects of the collection view are NSManagedObjects. The bug is triggered as follows;
(a) Delete objects from the ...
1
vote
1answer
175 views
Index of item within NSCollectionView
In my collection view I need to generate an index for each item. As Items get reordered I need this index to update with its new position.
The data are Core Data entities in a managed ...
1
vote
1answer
324 views
displaying web pages over web views in collection view using cocoa bindings
I tried sample example given at this link - Collection View Programming Guide
It is simple and it worked. Considering it as a reference I tried a simple application which will show a collection view ...
1
vote
3answers
499 views
Accepting drag operations in an NSCollectionView subclass
I've subclassed NSCollectionView and I'm trying to receive dragged files from the Finder. I'm receiving draggingEntered: and returning an appropriate value, but I'm never receiving ...
1
vote
1answer
239 views
How to imitate the workflow view of Automator?
I’m starting to develop my first full-blown Cocoa application containing a view which I would like to behave (and look) similar to Automator’s AMWorkflowView.
The basic features I’d like to achieve:
...
1
vote
1answer
335 views
Is there a way to have varying views in an NSCollectionView?
I am wanting something similar to how iWork has the template selection screen for Pages when you can select different templates, and each view contains different info has difference sizes etc.
I have ...
1
vote
2answers
928 views
Differences between NSTableView and NSCollectionView
I'm trying to decide which path to take for developing my Snow Leopard app. First, I should preface with the obvious differences:
NSTableView can have multiple columns of data for representing ...
1
vote
1answer
418 views
NSCollectionView not updating subviews on data change
I have set up an NSCollectionView through Interface Builder. My prototype view contains a progress indicator and a text field. I have set up the bindings so that my "task" object maintains the value ...
1
vote
2answers
1k views
How do I get the representedObject from a view in an NSCollectionViewItem?
I have a view that gets used in each of my CollectionView's items. I have an IBOutlet to the CollectionViewItem from my view and I have that hooked up in Interface Builder. I want to access a value ...
0
votes
2answers
94 views
NSCollectionView on iOS
I'm developing an iPad app and I'd like to use something like the NSCollectionView on it. There are SEVERAL 3rd party libs that do that. The problem is that none of them seem to support iOS 4.x. I ...
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
1answer
19 views
Updating NSCollectionView from another thread causes it blank
There is a NSCollectionView in my Mac application, and it contains some icons. Meanwhile, I am using NSOperationQueue as a task scheduler to queue some operations. In one NSOperation, I modify the ...
0
votes
0answers
43 views
Design issue: Core Animation, NSCollectionView and NSCollectionViewItems
I am struggling with a design issue: I have an NSCollectionView that contains several items (it's binded to an NSArrayController which is, in turn, binded to a NSManagedObjectContext). I have decided ...
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
2answers
92 views
NSCollectionView's setContent: memory management
I have a NSCollectionView that I populate using [collectionView setContent:data]; where data is a NSArray filled with objects all of the same custom NSObject subclass. The item prototype of the ...
0
votes
0answers
42 views
Subclassed NSCollectionViewItem has null properties
I've created a NSCollectionView with ArrayController and all that stuff. I create an instance which has NSCollectionViewItem as a superclass, add it to the array controller and all the passed values ...
0
votes
1answer
70 views
NSCollectionView pinch zoom
I am trying to get pinch zoom in an NSCollectionView by implementing -(void)magnifyWithEvent:(NSEvent *)event, but I'm not sure on what to do inside this method. I'm getting the amount of the zoom ...
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
133 views
Cocoa + CoreAnimation: Animated List of Custom Subviews
I've been trying to get this right for weeks now, and though I've learned a lot through my misfires, at this point, I just need a solution. The issue is with unpacking the seemingly overlapping ...
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
1answer
87 views
Cocoa Design: How to highlight the current department of an employee in a NSCollectionView?
I have this core data backed database with entries like in the many employees example:
An employee can belong to a department. A department has many employees.
I have a NSTableView (backed by a ...
0
votes
0answers
100 views
Expanding Cells or Collection Views in Cocoa
I am writing an inventory control app and will have a list of inventory items which will just show the item number, description and quantity on hand. But here's the kicker - when an item is clicked I ...