0
votes
1answer
26 views
Filtering entries from a Core Data entity that appear in an NSPopUpButton list
I'm familiar with how to feed data from one Core Data entity into an NSPopUpButton item so that it can be selected for another. Bindings like so:
For the values themselves:
-> …
0
votes
1answer
11 views
Core Data Relationship Fault
Tracking a familial relationship in Core Data (1 parent entity + 2 types of children, one of which is recursive), trying to create a drop-menu in Interface Builder that lists the names of the parent …
0
votes
4answers
38 views
PushViewController now crashes
In some working code, I had a call to PushViewController, which loaded (successfully) a new view from an xib.
I went into the XIB and added a couple of buttons. Retried the code, and the view …
0
votes
2answers
40 views
how to initialize UITableView? Both from XIB and programmatically?
Hi all,
I have a simple request that I have spent much time on (embarrassingly)..
I have sub-classed a UITableView to add some functionality. These new features require things like NSMutableSet …
0
votes
1answer
15 views
Accessing nib/xib objects from controller.
Hi!
I have a UI file in xcode, and I have an AppDelegate class with an awakeFromNib function. From this function, is there a way to change properties of objects which are in the UI? For example, …
0
votes
1answer
17 views
Allow 0 values in NSDatePicker fields?
Is it possible to modify an NSDatePicker object to allow for 0 values in the month and/or day columns? Dealing with a situation where the specific day in particular is non-essiential but nice to have …
0
votes
1answer
15 views
Calling up a specific record in Core Data
I'm setting up an edit window for a player to edit his user data. I've got all of the fields on the edit form bound to the appropriate Core Data entity (via an NSArrayController), and I've got an …
3
votes
3answers
151 views
Designing the iPhone interface in a nib or in code?
I've been pondering over this question for a long time already.
On the one hand, Interface Builder offers a really easy way to design the interface and wire the elements up with objects in my code.
…
0
votes
2answers
29 views
How do you change which view is active in a window?
The program I'm working on right now is a bit cumbersome, as it starts with a central menu, and then once the user chooses an option from it it opens their selection in a new window, when I've got a …
0
votes
1answer
26 views
Test build of Cocoa application not compatible with tester’s version of OS X.
I've been building a basic Cocoa application with Core Data and Interface Builder, and no extra coding, frameworks, or header files. I sent it to someone to test on their machine (a last-gen G5 …
0
votes
3answers
56 views
Memory Management of Interface Builder Outlets
I am using @property(nonatomic, retain) for my IBOutlets for an iPhone application. However, I'm not sure how to make sure I'm managing memory with them properly. The IBOutlets are all set up in …
0
votes
1answer
24 views
Closing old window when opening a new one in Cocoa
Ok, I have two windows, A and B. When I click a button on Window A, I want it to close and take the user to Window B. makeKeyAndOrderFront does a great job of activating Window B, but how do you get …
0
votes
2answers
30 views
BaseTen Framework newbie question
Hi folks,
I am a newbie in Cocoa and, while waiting for my copy of Aaron Hillegas book, I thought I'd give BaseTen framework a try. I am currently following the tutorial provided online but have …
1
vote
1answer
28 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
1answer
33 views
Notifying cocoa bindings system when code changes a property by instead of the interface
I'm writing a countdown timer and instead of calling -[NSTextField setDoubleValue:secondsRemaining] on each tick, I'd like to bind the secondsRemaining property to an interface element via an object …
