Tagged Questions

0
votes
2answers
42 views

NSManagedObject for temporary use, how to switch between NSObject and NSManagedObject

Hi Im using a Core Data model for my iPhone app. I have been looking for a way to instantiate or use an Entity outside the ManagedObjectContext. (This should not be done, I know, …
0
votes
2answers
30 views

How can I debug objects on XCode the same way I do in Eclipse?

Hello! I'd like to see the content of NSObjects like properties ( arrays, Integers, floats... ). Since I'm a Flex developer I'm used to use the eclipse debugging tool. But now I'm …
1
vote
3answers
79 views

Difference Between Object And NSObject

Hello, I'm learning Objective-C and as I can see, in some tutorials they use Object(imported from objc/Object.h) and in others i see the use of NSObject(imported from Foundation/N …
2
votes
3answers
114 views

Why subclass NSObject?

What is the purpose/use of NSObject in Objective-C? I see classes that extend NSObject like this: @interface Fraction : NSObject In C++ or Java, we don't use any variables like …
0
votes
1answer
91 views

How to declare a C Array as a property of an Objective-C object?

I'm having trouble declaring a C Array as an Objective-C Property (You know @property, and @synthesize so I can use dot syntax)...Its just a 3 dimensional int array..
1
vote
3answers
102 views

How do I know if a pointer is an NSObject?

I have a pointer in an objective-C class that I need to send messages to. The pointer can potentially be anything, so I need to make sure that it will respond to my messages before …
3
votes
4answers
194 views

How does inheriting from NSObject work?

There are a couple of things about Objective-C that are confusing to me: Firstly, in the objective-c guide, it is very clear that each class needs to call the init method of its s …
3
votes
3answers
75 views

Capturing all methods/message calls on an object

How do I put a "hook" on an object so I can see what messages are being sent to it? (ie do an NSLog() every time a message is sent to an object). I think recall seeing this done b …
0
votes
1answer
74 views

Filling Array with Custom Class - retrieving values…

I have the following code NSMutableArray *leeTemp = [[NSMutableArray alloc] init]; Player* playerLee = [[Player alloc] init]; playerLee.name = [array objectAtIndex:1]; [leeTemp ad …
0
votes
1answer
50 views

Trying to grab integer from pre-defined p-list? ObjC/Cocoa

Hello, I'm working on an Objective-C/Cocoa roguelike, because I've always found that working on a game is the best way to learn about a language. I've gotten quite far with my game …
0
votes
1answer
102 views

Class variable type gets changed

So in my view controller, I run code to populate an NSArray of Customer (custom class) objects. This custom class has objects that are of ANOTHER custom class called Address (a cus …
2
votes
3answers
148 views

When wouldn’t NSObject be stated as the parent class?

For example: @interface Fraction: NSObject { ... When wouldn't NSObject be used and is NSObject the ultimate parent class for all other classes? Please feel free to correct me …
0
votes
3answers
674 views

How to instantiate an NSObject in the Interface builder .xib file

Greetings, I have a view based application project where I have created an NSObject class called "SquareClass". Now, from the Xcode's interface builder, I want to be able to insta …
0
votes
2answers
264 views

perfomSelector: withObject: afterDelay: can I ask for a low priority?

Is there some way when sending this message to specify that I rather have my selector performed after all pending UI events, if any? Ie. give my aterDelay timer a lower priority in …