Tagged Questions

Cocoa bindings is Apple’s implementation of the Model-View-Controller design pattern for Mac OS X applications. It provides technologies that automate the synchronisation of domain data and the user interface elements that present them.

learn more… | top users | synonyms

14
votes
4answers
2k views

Can you manually implement Cocoa bindings?

I've had a crack at implementing bindings for my own NSView subclass. It works, but there are problems with retain cycles when binding to File's Owner from a nib file. After reading into it a little, ...
14
votes
2answers
2k views

What describes objective-C and Cocoa Bindings best?

I have trouble understanding Cocoa Bindings. Can someone explain me what this is all about, in an way that is humanly perceivable?
10
votes
3answers
5k views

When should I remove observers? Error about deallocating objects before removing observers

I am trying to use key-value observing in one of my classes. I register the observers in the init method and remove/deregister them in the dealloc, but I get the following error which seems to occur ...
10
votes
6answers
532 views

What's a good way to bind from a shared utility window and the frontmost document window?

I have an application which allows for multiple NSDocuments to be open. In this application is a single utility window that contains some functionality that I want to apply to the frontmost document. ...
9
votes
5answers
2k views

Cocoa Core Data newbie how-tos

I am one of the great unwashed masses of .NET developers keen to try their hands at Mac OS X development. At the moment I am trying to figure out the various elements of Cocoa and getting a bit stuck ...
9
votes
2answers
1k views

Cocoa application architecture on Mac OS X

I'm getting back in to Cocoa development on the Mac after a long stint doing iPhone work. My previous experience with Cocoa on the Mac has just been dinky little tools. I'm looking to build something ...
9
votes
4answers
3k views

Binding a custom NSView: Does it demand creating an IBPlugin?

I have created a subclass of NSView to draw an image as a pattern: @interface CePatternView : NSView { NSImage* image; id observableObjectForImage; NSString* keyPathForImage; } @end ...
8
votes
1answer
262 views

Cocoa bindings for the Go language

Is it possible to write Mac OS X/Cocoa applications in Google Go? Is there a Go-Obj-C bridge? (it seems to me that Obj-C dynamism would be a great fit for Golang's interfaces) Can I at least link ...
8
votes
7answers
954 views

Should I use Cocoa bindings for my latest project?

I'm starting a project which I think would benefit from bindings (I've got a source list table, several browser views, etc), but I think it would also be quite doable, and perhaps more understandable, ...
6
votes
2answers
108 views

What's the Difference between “Content Values” and “Content Objects”

I'm exploring bindings right now, and have an NSPopUpButton - It presents me a number of options for bindings under Value Selection - Content, Content Objects, Content Values, and then Selected ...
6
votes
1answer
165 views

Observing dependent keys across a to-many relationship

I have a Core Data entity, "bid", which has a relationship to many "items", called "itemLink". in IB, I have a text field bound to "total", and that almost works. In "bid.m" I have: - ...
6
votes
2answers
721 views

How would an iTunes-style Source-List be implemented with Bindings+CoreData in Cocoa?

Let's say, for illustration, I was writing an iTunes clone app in Cocoa, that was backed by CoreData. For simplification's sake, let's say there are two "sections", "Library" with things like Music, ...
6
votes
1answer
507 views

How do I override NSError presentation when bindings is involved?

One thing I've always had trouble with in Cocoa Bindings has been error presentation, for example when the user types the wrong value into a text field with a formatter attached. Normally I would ...
6
votes
4answers
2k views

Storing an NSImage in a Core Data Model

What is the correct way to store an NSImage in a Core Data Model? I have assumed adding an Attribute to an Entity and giving it the Type "Binary" should work, but it is not working. I have a table ...
6
votes
1answer
2k views

Implementing a KVO/Bindings-Compliant Bridge-Pattern in Cocoa

I'm trying to implement a simple object bridge in cocoa where the bridge object acts as a kvo/bindings-compliant drop in for some arbitrary other NSObject instance. Here is my problem (more details ...
5
votes
1answer
75 views

What does Cocoa binding's NSHandlesContentAsCompoundValueBindingOption do exactly?

When binding an NSArrayController's contentArray to an NSUserDefaultsController, you have to check the "Handles Content As Compound Value" checkbox on the binding. This has become conventional wisdom, ...
5
votes
3answers
398 views

What are the reasons for subclassing NSArrayController?

I am trying to improve my KVC/KVO/Cocoa-Bindings-fu and was wondering what could be the reasons to subclass the NSArrayController?
5
votes
1answer
841 views

Is there any technical/conceptual reason why iOS does not support Cocoa Bindings?

Cocoa for Mac OS X support Cocoa Binding technology, reducing need of glue code between your views and your models. Recreating Cocoa Bindings on top of KVC on KVO seems doable with the help from ...
5
votes
1answer
760 views

How do I bind an iTunes style source list to an NSTableView using Core Data?

I have an iTunes style interface in my application: Source list (NSOutlineView) on the left that contains different libraries and playlists with an NSTableView on the right side of the interface ...
5
votes
3answers
594 views

Aaron Hillegass _Cocoa Programming for Mac OS X_ Chapter 9 Question

In Aaron Hillegass' Cocoa Programming for Mac OS X, Chapter 9, the section called "Begin Editing on Insert", he explains how to do exactly that. The thing that confused me though, was that he did a ...
5
votes
2answers
935 views

How do I bind the enabled binding of a button to whether or not an NSArrayController has a selection?

I want to bind the enabled state of an NSButton to whether or not an NSArrayController has any selected items. How do I do this?
5
votes
3answers
902 views

Is it necessary to override bind:toObject:withKeyPath:options: in an NSView subclass to implement binding?

I have an NSView subclass which has property which I want to be bindable. I've implemented the following in the subclass: myView.h: @property (readwrite, retain) NSArray *representedObjects; ...
5
votes
2answers
950 views

How do I keep an NSPathControl updated with the path of the selected cell in an NSBrowser

I need to keep an NSPathControl updated with the currently selected path in an NSBrowser, but I'm having trouble figuring out a way of getting notifications when the path has changed from the ...
4
votes
1answer
37 views

Circular dependencies in Cocoa bindings

This is doing my head in... Simplified version: I have two text fields - Field A and Field B. Field B can be derived from field A and similarly Field B can be derived from Field A. (There's couple ...
4
votes
1answer
1k views

“[something copyWithZone:]: unrecognized selector sent to instance” when using Bindings / Core Data

(self asking and self-answering because I spent hours on the web looking for this, and most of the resources all say "I solved it in the end" without giving an explanation) I had a very simple Core ...
4
votes
1answer
584 views

Need some tips regarding the Cocoa MVC/KVO patterns

This is a very wide-ranging/vague question, but here goes. Apologies in advance. The app (desktop app) I'm building takes different kinds of input to generate a QR code (I'm just building it to learn ...
4
votes
2answers
256 views

Tool for debugging KVO/Bindings in Cocoa

Is there any tool to log current observers of a given object, in the spirit of what "gdb info gc-roots" does? I found "gdb info gc-references" could do that (sort of) as a by-product of its original ...
3
votes
1answer
117 views

Example for how to implement a view-based source list?

Has anybody found a clear, concise example or guide on how to implement a source list using the view-based NSOutlineView introduced in Lion? I've looked at Apple's example project, but without any ...
3
votes
0answers
145 views

Manual Cocoa Binding not changing Observed KeyPath

I'm changing a cocoa binding programatically. I'm binding a NSTextField's value to the selection of an ArrayController. After I manually change the binding, I'm getting the "not key-value coding ...
3
votes
1answer
319 views

NSPopUpButton: multiple values & selectedIndex binding

Context: I have an NSArrayController tied to Core Data that supplies rows for an NSTableView. When a user selects rows, the arrayController's "selectedObjects" property changes. Now, each of those ...
3
votes
2answers
101 views

Very confused by a binding issue between a Cocoa app and a Movie Loader patch in Quartz Composer

I've been programming for a while, but just recently decided to start developing for Mac OS X. I feel like I've come to grips with the basics of Objective-C and Cocoa development over the past week. ...
3
votes
1answer
148 views

Creating a continuously updating custom control with proper undo management

I am putting together a custom NSView that handles two values through bindings. I am propagating the values upon updates as outlined by Tom Dalling in the question Can you manually implement Cocoa ...
3
votes
1answer
108 views

Modeling user-orderable lists with Core Data / Bindings

I'm working through a learning project around Core Data on OS X. I have an entity (Foo) in the data store, and in the UI, I use an NSArrayController with bindings to put some (name) field of the Foo ...
3
votes
1answer
157 views

Is it OK for other threads to have indirect access to a managed object context running in a thread of its own?

Apple's recommended method for multithreading core data is to use a managed object context per thread, and to send changes from one context to another by saving the changed thread's context to a ...
3
votes
2answers
745 views

Exposing model object using bindings in custom NSCell of NSTableView

I am struggling trying to perform what I would think would be a relatively common task. I have an NSTableView that is bound to it's array via an NSArrayController. The array controller has it's ...
3
votes
1answer
303 views

Cocoa data hierarchy and browser

I'm trying to implement something similar to the iTunes browser, to browser a simple database of Books. I have the following entities - Author, Genre and Book. I would like to display an author list ...
3
votes
1answer
501 views

Validating input in NSOpenPanel accessory view

I would like to solicit additional information from the user during the NSOpenPanel but need to validate that information before the open panel completes. For example, I may want to allow the user to ...
3
votes
1answer
744 views

NSManagedObjectContext and NSArrayController reset/refresh problem

I'm having trouble getting my UI to reflect external changes (made by another process) to an sqlite data store. I have a fairly standard core data based NSArrayController / table view. My app gets ...
3
votes
1answer
924 views

Implementing parent->child drill down in Cocoa with Core Data bindings that span multiple entities

I'm trying to create a simple interface to my core data model in the style of iTunes Genre browser. I have a model setup with three entities: Genre <-->> Artist <-->> Album. I'd ...
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 ...
3
votes
1answer
4k views

NSOutlineView and NSTreeController example

Please send me some links on how to use NSOutlineView with NSTreeController bindings without using core data. Thanks in Advance, BP
3
votes
4answers
701 views

KVO and Bindings problems using my own (not the shared) NSUserDefaults object

I'm subclassing NSUserDefaults in my application. A side effect of this is I can't use [NSUserDefaults sharedUserDefaults], I have to have a class method to provide my own static defaults object. This ...
3
votes
1answer
959 views

Cocoa binding to a particular item in an array controller

Is it possible using NSArrayController to bind a NSTextField's value to a particular item in the array? In particular, I want to bind to a property on the first item in the array, and show nothing if ...
3
votes
2answers
2k views

NSTableView and NSOutlineView drag-and-drop

I have an NSTableView and an NSOutlineView, both with their content provided by bindings, that I'd like to have some drag-and-drop functionality: Drag rows from Table A onto a row of Outline B, ...
3
votes
1answer
1k views

MVC and cocoa bindings best practices question

Lets say I have a view, myView, a view controller, myViewController, and some sort of model object, myModel. Further, lets say the model has two KVO compliant properties, arrayOfPeopleNames and ...
2
votes
1answer
102 views

Can't figure out how to do this cocoa binding

I am a .net developer that's trying to learn how to do cocoa programming on a mac. I have run into a problem that I can't seem to figure out or find an answer for. I have created the following ...
2
votes
1answer
90 views

Referencing Bindings in Connections Inspector

I'm new to Xcode 4.2, and I have a sample code from Apple, and I'm playing with it to make myself familiar with Xcode. I made a similar project with that of Apple's, and one button of my project (in ...
2
votes
1answer
135 views

How do I bind to a custom view in Cocoa using Xcode 4?

I'm a beginner when it comes to writing Mac apps and working with Cocoa, so please forgive my ignorance. I'm looking to create a custom view, that exposes some properties, which I can then bind to an ...
2
votes
1answer
49 views

Cocoa binding between 2 property in different classes

I am about 2 weeks in learning cocoa, currently I am trying to understand bindings, can I bind 2 non UI properties together? I tried bind them programmatically, but can't seem to get it to work. ...
2
votes
1answer
74 views

Moving array controller initialization from nib to code breaks table view bindings

My window controller subclass is the nib's owner. I instantiate my array controller, in code, in my document subclass. Both the document and window controller use it in code. I bind table columns ...

1 2 3 4 5 9