Tagged Questions

NSObject is the root class of most Objective-C class hierarchies; it has no superclass. From NSObject, other classes inherit a basic interface to the runtime system for the Objective-C language, and its instances obtain their ability to behave as objects

learn more… | top users | synonyms

6
votes
2answers
134 views

Why do Objective-c protocols adopt other protocols?

I've seen Objective-c protocols defined in the following way: @protocol MyProtocol <SomeOtherProtocol> // ... @end Why do protocols adopt other protocols? I'm especially curious why a ...
6
votes
3answers
90 views

How to call a method a.s.a.p. but at earliest in the next run loop iteration?

I need a save way to say: "iOS, I want this method to be executed a.s.a.p., but NOT in THIS run loop iteration. At the earliest in the next, but please not in this one. Thank you." Right now I am ...
6
votes
2answers
181 views

Categories on NSObject — keeping it safe

Apple has this to say: Categories of the Root Class A category can add methods to any class, including the root class. Methods added to NSObject become available to all classes that are linked to ...
6
votes
1answer
360 views

reimplementing NSObject from scratch

When I was reading about the new 4.0.2 iOS update I wanted to know what hackers do or try doing with a buffer overflow, which after some wikipedia'ing got me interested in playing with malloc and thus ...
5
votes
4answers
1k views

Why use (id) in a method signature when (NSObject *) would be more precise?

Whenever I implement a method in my own code that can accept or return objects of more than one class, I always try to use the most specific superclass available. For example, if I were going to ...
4
votes
2answers
117 views

how to get NSString variable value from NSObject to ViewController

I am trying to set up an object to controll all of my data so it can set things up in the background to it appears my tableviews load faster than they do now etc. This is what I am trying to achieve. ...
4
votes
2answers
208 views

Objective-C: Why check nil before respondsToSelector:?

I've seen code like: if (delegate != nil && [delegate respondsToSelector:@selector(doSomething)]) ... But, sending a message to nil just returns nil (which evaluates to NO), so why not just ...
4
votes
2answers
469 views

Generic Objective-C description method to print ivar values

In Objective-C, it's common to override -description with a method that prints the object ID and instance variable names/values. I'd like to make a generic -description method that does this through ...
4
votes
1answer
61 views

Can I assume NSObject as a kind of CFType in Cocoa-touch?

I'm guessing NSObject is a kind of a CFType, but I have no sure. There is no mention about this in documentation. Can I assume it toll-free bridged?
4
votes
3answers
627 views

Is there a reverse “setValuesForKeysWithDictionary” - a makeDictionaryWithObjectProperties?

I parse some JSON from a web service, this gives me an NSDictionary, I use this dictionary to populated properties on a valueEntity of type NSObject by [myObject ...
4
votes
3answers
2k 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 NSObject even though ...
4
votes
4answers
2k 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 subclass. It's a ...
3
votes
4answers
61 views

Subclass UIViewController or create a custom NSObject when the view is not fullscreen

I need to create a class controller to manage the behavior of a custom view I created. The standard approach is to subclass UIViewController, but in my case I instead decided to subclass the NSObject ...
3
votes
2answers
70 views

Overriding isEqual: method but it is not called when removing object from array

I'm using xCode 4.2, and going through the book "Programming in Objective C 2.0" There is an exercise that involves implementing isEqual: method from the NSObject class. The book says that the ...
3
votes
1answer
49 views

What happens to an NSArray object when encoding?

I'm building an application that utilises NSCoding to save NSObject's to a documentPath. I'm having no issues doing this, I'm just curious about something. I have MACompany, which implements NSCoding ...
3
votes
5answers
176 views

Trapping Objective C classes

I'm trying to catch/override certain methods that get called within objects I have no access to. I would like to be able to subclass objects that are instantiated within system objects. For example, ...
3
votes
4answers
1k views

How do I store an NSRange in a NSMutableArray or other container?

Here's what I want to do: NSRange r = NSMakeRange(0,5); id a = [NSMutableArray a]; [a addObject: r]; // but NSRange is not a NSObject * With a boolean, I'd use code like this: [a addObject: ...
3
votes
4answers
222 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 before but I forget ...
2
votes
2answers
257 views

What is __NSArrayI and __NSArrayM? How to convert to NSArray?

What is __NSArrayI and __NSArrayM? __NSArrayI(or M) cause "unrecognized selector" error. How to convert to NSArray? I did test to parse json, twitter api. ...
2
votes
2answers
203 views

Using a typedef enum in my object Class

I have a People class which holds various bits of into about a person. I would like to be able to identify what kind of person this is, so I thought I would try using a typedef enum for this since I ...
2
votes
3answers
91 views

NSClassFromString Idea

I'm currently trying to create objects from the NSClassFromString(NSString *) method. What I want to be able to achieve is the following... NSClassFromString(stringType) *pageController = nil; ...
2
votes
3answers
105 views

iPhone : is there a way to loop through the attributes of an NSObject?

I have an NSObject defined as followed: @interface MFMoodMix : NSObject { NSNumber *m1; NSNumber *m2; NSNumber *m3; NSNumber *m4; NSNumber *m5; NSNumber *m6; NSNumber *m7; ...
2
votes
1answer
41 views

Object's properties without consistency

I have in my App Delegate an NSArray that contains a range of LPProduct objects, each of them has an array of LPColor objects where we have a CGFloat property called price. In order to get an array ...
2
votes
1answer
194 views

Objective-C forwardInvocation:

I often do something like: CoolViewController *coolViewController = [[CoolViewController alloc] init]; [self.navigationController pushViewController:coolViewController animated:YES]; ...
2
votes
2answers
164 views

Reusing NSObjects by Overriding release in Obj-C

I am implementing an object reuse scheme using a singleton class. What I do basically is: MyClass* obj = [[MyClassBank sharedBank] getReusableItem]; The bank is just an NSMutableSet tweaked for ...
2
votes
1answer
247 views

How to observe change in NSObject properties

I have subclass of NSObject having 70 properties, i need to observe change in all of them without adding each property one-by-one using following : [self addObserver: self forKeyPath: ...
2
votes
2answers
320 views

Monotouch: convert an Object to NSObject

How is it possible to convert an Object instance to NSObject one? I've created a NSDictionary from NSDictionary.FromObjectAndKey(); This method wants an NSObject but I have custom object to pass ...
2
votes
2answers
165 views

Reading custom NSObject from NSObject property

I have a custom NSObject Class, lets call in People, and a Class from the CloudMade RMMarker.h called RMMarker. The RMMarker class has a property called data which is a NSObject. I know set the data ...
2
votes
3answers
491 views

Objective-C Is it safe to overwrite [NSObject initialize]?

Basically, I have the following code (explained here: Objective-C Constants in Protocol) // MyProtocol.m const NSString *MYPROTOCOL_SIZE; const NSString *MYPROTOCOL_BOUNDS; @implementation ...
2
votes
3answers
251 views

Adding context to a UI control or NSObject

It's great to be able to addTarget on a UIButton. I only wish there was some sneaky way I could attach state to the UIButton so that when the target method is invoked, I could magically pull that ...
2
votes
4answers
620 views

How to tell if a Class inherits from NSObject (Objective-C)

I'm working in Objective-C on the iPhone and need to know whether a 'Class' inherits from 'NSObject'. I tried checking if it responds to an NSObject selector: bool success = [myClass ...
2
votes
2answers
329 views

how to initialize an object(NSObject subclass) at a specific address

Hi I need to initialize an NSObject at a particular location that I specify(through a void* pointer, for example). For a little bit of context, I am writing a sqlite3 aggregate function. To keep ...
2
votes
1answer
179 views

How to make a copy of a custom object

I made a custom object that inherits from NSObject. Let's say I have an array of these objects. Then I want to make another object, that is a copy of one of the objects in the array. I do not want to ...
2
votes
1answer
187 views

NSObject's 'description' method giving parentheses as output?

So, I'm debugging an app I'm building and using the description method to help me find the problem. But instead of giving me the app as a string it is printing out parentheses instead. Please help! ...
2
votes
1answer
367 views

NSView subviews and types

I have a couple of custom NSBox subclasses called OuterBox and InnerBox. I've set up my view in a XIB and arranged the hierarchy like this: OuterBox : NSBox NSButton NSBox InnerBox : ...
2
votes
3answers
119 views

Objective C Memory Management Woes

I know this has been discussed ad-nauseum but I just don't get some of the memory management. I understand that retain keeps the object alive and copy gives one a separate copy of an object. What I ...
2
votes
4answers
543 views

Subclassing NSObject, can it cause problems?

I have a very basic data class that is subclassed from NSObject. I declare a few strings, make sure they have properties (nonatomic, copy), and synthesize them. The only method I implemented was ...
2
votes
4answers
3k views

Where is 'Class Actions' in the 'Object Identity' panel in Interface Builder?

I thought I was fairly experienced at iPhone development, but I'm tripping up on the Stanford iPhone course on the very first video ...
2
votes
3answers
600 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 I send them. Here's ...
2
votes
3answers
462 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 on any wrong ...
1
vote
4answers
33 views

What is the significance of WaitUntilDOne in performSelectorOnMainThread?

What is the significance of WaitUntilDOne in performSelectorOnMainThread? IN what way the YES or NO set to WaitUntilDone can have on the App? UPDATE: My Question should have been in what scenarios ...
1
vote
2answers
48 views

Duplicate objects in NSMutableArray displayed by UITableview

I have a problem that has been stumping me for a while, I wrote a new version of the program and got the exact same bug. When the following runs, I should be getting a nicely sectioned table view ...
1
vote
2answers
57 views

New NSManagedObject subclass vs. new NSObject subclass?

I have two NSManagedObject subclasses, Person and Photo, that I am storing with CoreData. I need a comment object for a photo, and I was wondering if I should create a new NSManagedObject subclass and ...
1
vote
4answers
81 views

NSString to class instance variable

I am looking for a way to convert from NSString to a class instance variable. For sample code below, say filter is "colorFilter". I want filternameclassinstancegohere to be replaced with ...
1
vote
2answers
236 views

Accessing forwardInvocation'd methods with ARC?

I'm writing a clone of OpenStruct in Objective-C, using forwardInvocation:. However, the compiler isn't aware of the forwarding at compile time apparently. Compiling with ARC gives me a ton of ...
1
vote
3answers
81 views

Any possible reason isa variable is reset to nil?

My iPhone app keeps receiving BAD_EXC_ACCESS error after running for a while, after painful debugging I find that one of my static variables (NSPredicate to be exact) was corrupted: it still pointed ...
1
vote
3answers
100 views

How to store custom class using CoreData

I have a class extending NSObject. It is consisting of a few float variables. I want to store this class in core data. In the data model, It seems that the most probable option is to turn this class ...
1
vote
1answer
59 views

How to create a Custom Circle?

I want to create a custom circle for my application whose all attribute and property i want to define my self. Basically i want to create a myCircle class which should be inherited from NSObject ...
1
vote
0answers
255 views

Building NSObject to save ABRecordRef data local

I want to store the Content of a ABRecordRef in my own Application independent of the entry in the AdressBook. After crossreading through stackoverflow and the apple developers site i found this to be ...
1
vote
1answer
506 views

Scalar type in Managed Object only works for IPhone 5

Property 'Latitude' is a scalar type on class 'LatitudeLongitude'. Cannot generate a setter method for it. When I generated codes for my managed object, I got a message whether I want scalar ...

1 2 3 4