Question

I have seen a lot of talk about dynamic typing in objective-c. But i haven't seen any examples of what i think it is supposed to be.

lets say I have a generic function that is supposed to juggle two objects (one gets allocated and the other gets freed) and the calling object attaches it self to the newly alloced object. Both are inherited from class0

Please feel free to interpret this however you want if you think it will explain something!!

If the class is picked at runtime, how do i deal with the arguments list (? is a placeholder for now) How do i alloc a object who's class is not defined until runtime?

-(void) juggle:(?*)objclass1:(?*)objclass2{

? temp = [? alloc] init];
objclass1 = temp;
[temp release];

[objclass2.view removefromsuperview];
[self.handle insertsubview:objclass1.view];

}
Was it helpful?

Solution

I have no idea what the code you have there is trying to do, it is not syntactically valid, and manipulating views has nothing to do with your questions. Anyway, if you really don't know the type you generally use "id" which is type cast to a "void *" for codegen. It has the special property that it is assumed to receive any message, so it does not trigger compiler warnings for unknown messages.

In order to instantiate a class you just need to be holding the "Class" object for it. In Objective C all instances of a class refer to a Class object (the isa pointer in the legacy runtime), which also responds to methods. So in other words, in the following code:

NSArray *myObject = [[NSArray alloc] init];

NSArray is actually an object. So this will generate equivalent code results:

Class myClass = [NSArray class];
NSArray *myObject = [[myClass alloc] init];

or even

Class myClass = NSClassFromString(@"NSArray");
NSArray *myObject = [[myClass alloc] init];

Which uses the function NSClassFromString which walks into the runtime and finds a class with the name you pass in.

All objects return their class if use the class getter, so to instantiate an object that is the same class as an existing object like this:

- (void) leakObjectWithSameClassAs:(id)object {
    [[[object class] alloc] init];
}

OTHER TIPS

This is what i have now

- (void)flipfromv1tov2:(UIViewController*)v1:(NSString*)nib1:(UIViewController*)v2{

    if(v1 == nil)
    {
        UIViewController *newview = [[[v1 class] alloc] initWithNibName:nib1 bundle:nil];
        v1 = newview;
        [newview release];
    }
    [v2.view removeFromSuperview];
    [self.view insertSubview:v1.view atIndex:0];    
}

I cannot verify it yet because I have a linking problem...I added this func to my root controller but for some reason I get a warning that the function is implicitly declared. And the build fails because the function call never get linked to anything

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top