vote up 0 vote down star

Hi all, I've been banging my head with this one this evening and am sure it's something very simple that I've missed

I've created a new project with the appdelegate and a view controller class as below. The view controller synthesises the property in the .m, and the app delegate header imports the view controller .h file. Code below:

View controller header:

@interface untitled : UIViewController {
    NSString *string;
}
@property (nonatomic, retain) NSString *string;

App delegate:

- (void)applicationDidFinishLaunching:(UIApplication *)application {
 testViewController = [[untitled alloc] initWithNibName:@"untitled" bundle:nil];
 testViewController.string = @"Testing String";
    [window addSubview:testViewController.view];
    [window makeKeyAndVisible];
}

Can someone please help and point out the obvious mistake as to why setting the string property fails here with the error mentioned? Is it because of being inside this method? I've never had issues setting properties in other methods before after initing a view controller.

Thanks.

flag
does [testViewController setString:@""] work? – Daniel Nov 4 at 20:49
Maybe double check your AppDelegate.m? That's the error I get whenever I've forgotten to include the header file the class is defined in. – Dana Nov 4 at 20:53
I get 'UIViewController may not respond to '-setString:' with that one – Tom Nov 4 at 20:55
Dana - appdelegate .m has #import "untitled.h"; hmm. – Tom Nov 4 at 20:56
yea its cuz u declared it as UIViewController and not untiled most likely like the answer below is s aying – Daniel Nov 4 at 20:57
show 1 more comment

1 Answer

vote up 4 vote down check

The error is saying it does not understand that the class has that property. It means you have either the wrong class or that it knows nothing about the class.

So, you need to add:

#import "untitled.h"

in your application delegate - also, you need to have the variable be of type "untitled" (I am pretty sure you declared the type as UIViewController and not untitled):

 untitled * testViewController = (untitled *)[[untitled alloc] initWithNibName:@"untitled" bundle:nil];

By the way, by convention you should always start class names in uppercase.

link|flag
Ah well the untitled.h is already imported in the app delegate header, so it knows about the view controller class itself - if i remove the line to assign the property then it loads and displays the untitled nib correctly. untitled is just the lazy name I gave the view controller class in this example :) – Tom Nov 4 at 20:53
Just realised what you meant with the type, that solved it - thanks! – Tom Nov 4 at 21:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.