0
votes
0answers
3 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
0answers
7 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
15 views
Printing arguments sent to forwardInvocation: subclass of NSProxy
I want to intercept messages sent to a proxy object by just printing the selector and arguments. Even if the proxy does not implement them and does not have a target object. Please help. I have looked …
1
vote
1answer
31 views
NSXML replacing “<” with “%lt;”
I see there are other questions related to this, but none using NSXML.
So, I'm constructing an XML document from scratch using NSXML and when I create a NSXMLNode with a string value, all the "<" …
0
votes
2answers
45 views
How to find a string in an NSArray?
This feels like such a stupid question, but how can I find a string in an NSArray?
I tried using
[array indexOfObjectIdenticalTo:myString]
but that requires the sting to have the same address.
…
1
vote
1answer
16 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 …
6
votes
2answers
49 views
Displaying fixed and editable items in a Source List
Background
I am creating a Source List for my application and I want it structured in a way similar to that of iTunes, with two types of items:
"Fixed" items – these do not change and can't be …
2
votes
2answers
37 views
What is the range for the DATE type in Core Data?
I'm putting together an application that will require the recording of dates as far back as the BC range; can Core Data's date type handle this, or do I need to define another entity to properly …
0
votes
2answers
19 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 …
0
votes
1answer
19 views
Exporting to MS Word in Cocoa?
Writing an application in Cocoa that will take input from the user, format it appropriately, and then export it to MS Word. Are there any references or built-in libraries available regarding how to …
1
vote
2answers
53 views
Comparing dates in Cocoa
hi i want to know how to get current date?
i want to compare current date with a date i m fetching from a plist files using following code.
NSDate *expDate = [licenseDictionary …
2
votes
1answer
23 views
How can I create a master-detail interface with Core Data and an abstract entity?
Apple has a nice little tutorial for making a simple master-detail interface. Interface Builder will even automatically generate one for you from a Core Data entity. However, I'm trying to do …
1
vote
3answers
49 views
What is the Cocoa Touch equivalent to NSArrayController?
Been starting to work with Core Data a bit, and while I've figured out how to use it in regular Cocoa applications, it seems it works a bit differently in Cocoa Touch. How do you bind entities to …
0
votes
1answer
26 views
more detailed information about the exception in xcode
So I am trying to troubleshoot why adding an item to my dictionary causes an exception.
It turns out that I used a NSDictionary instead of NSMutableDictionary.
However the exception I saw... …
1
vote
2answers
77 views
const vs static NSStrings in Objective-C
These lines are both in the implementation file above the @implementation declaration.
NSString * const aVar = @"aVarStringValue";
static NSString *aVar = @"aVarStringValue";
As far as I …
