1
vote
1answer
21 views
Why isn’t my variable being assigned
Ok I think my understanding of properties in objective c may not be what I thought it was.
In my program I have a singleton that contains my class.
In my class during the init I …
0
votes
0answers
39 views
Core Data with in-memory store
I want to use Core Data as a cache for a larger dataset on a database server.
Not all data will be in memory.
When thinking about this further 2 questions came to mind:
Can fau …
0
votes
1answer
22 views
Does Apples UI define Drag&Drop in menus and/or context menus for menu items
I'm trying to update my GUI a little bit but don't want to run into porting problems later next year when a native Cocoa Port will be started.
On Windows/Linux it is common to dra …
0
votes
1answer
29 views
Null selector sent to first item in NSMutableArray
Whenever I call this method:
- (IBAction)addListItem: (id)sender {
NSString *newItemText = [inputField stringValue];
TodoItem *newItem = [[TodoItem alloc] initWithGUID …
2
votes
1answer
64 views
Creating a Cocoa app using C or Perl (NOT Objective-C)
I'm having a hard time understanding how to use Cocoa with either C or Perl.
Background:
I've seen it mentioned in quite a few places that Mac's Cocoa API can be used with C, Perl …
0
votes
3answers
35 views
Is there a way of sharing a Core Data store between processes?
What am I trying to do?
A UI process that reads data from a Core Data store on disk. It wouldn't need to edit the data, just read and display the data.
A command line process tha …
0
votes
4answers
56 views
Member variable naming conventions in Cocoa
This question is about variable naming style in objective c and cocoa. I just want to stress that I'm not looking for a "right" answer, just good ideas.
I've read through Apple a …
1
vote
2answers
65 views
NSManagedObject setValue problem (Core Data)
Hi,
I wish to edit an existing record in core data. At the moment, I have this code, but it creates a new record (and inserts the correct data into the correct column):
NSManagedO …
0
votes
2answers
54 views
Carbon in Cocoa Crashing: EXC_BAD_ACCESS after NSAutoreleasePool is released
I'm developing a Cocoa user interface using Bindings from within a Carbon application. (Carbon in Cocoa) I'm getting a EXC_BAD_ACCESS error when I close my modal NSWindow and the …
1
vote
1answer
48 views
NSPredicate Memory Issues
So I am trying to fix this really annoying bug. If I filter my array like the ideal version with NSPredicate, I will get EXC_BAD_ACCESS because it tries to call release on the obje …
0
votes
3answers
40 views
Making a Cocoa App Pop Up a Widget instead of a Window
I have never made an app using XCode and Cocoa but I think following these instruction:
http://developer.apple.com/Mac/library/documentation/GraphicsImaging/Reference/IKImagePicke …
1
vote
1answer
28 views
How to associate an action to a keyboard shortcut?
Hi all,
I've an IBAction that calls up a panel. I want to invoke that action with a keyboard shortcut but I'm at a loss on how to do it.
I guess one way of doing it would be to c …
2
votes
2answers
41 views
How do you call PyObjC code from Objective-C?
I'm a long-time Python programmer and short-time Cocoa programmer. I'm just getting started with PyObjC and it's really amazing how easy it it is to get stuff done. That said, I wa …
3
votes
4answers
89 views
Object allocation from class method?
I am just curious if this is right, or bad practice? (i.e. using a class method to alloc/init an instance)? Also am I right in thinking that I have to release the instance in main( …
1
vote
1answer
29 views
Am I permitted to change the object graph in NSManagedObjectContextObjectsDidChangeNotification?
I'd like to know when an object has been inserted into my Core Data MOC and when it has, add it to another object with a relationship.
So I watch the NSManagedObjectContextObject …
