I'm pretty new to objective c, and having some basic problems.

I wrote a simple program using a navigator, and everything worked fine. then I added few lines of code (can't even remember what exactly, and it seems to have no connection to the problem) and the problem occurred. I tried ctrl+z, and the problem remained:

I run the program and get these errors:

1. unknown type name "mainController"
2. property with 'retain (or strong)' attribute must be of object type

while mainController is the first screen to be loaded.

this is the appDelegate.h file:

#import <UIKit/UIKit.h>
#import "mainController.h"
#import "WishesList.h"
#import "Wish.h"
@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;
@property (nonatomic, strong) IBOutlet UINavigationController *navController;
@property (nonatomic, strong) IBOutlet mainController *viewController; //this line creates the errors
@property (strong,nonatomic)  WishesList *WishesArray;
@property (strong,nonatomic) NSIndexPath *temp;

@end

this is the relevant part of the appDelegate.m file:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:    (NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    WishesArray=[[WishesList alloc]init];
    temp=nil;
    [self setViewController:[[mainController alloc] init]];
    [self setNavController:[[UINavigationController alloc] initWithRootViewController:    [self viewController]]];
    [[self window] setRootViewController:navController];
    [self.window makeKeyAndVisible];
    return YES;
}

and this is mainController.h:

#import <UIKit/UIKit.h>
#import "addWishController.h"
#import "displayWish.h"
#import "WishesList.h"
#import "Wish.h"

@interface mainController : UIViewController
@property (nonatomic, weak) WishesList *list;
@property (strong, nonatomic) IBOutlet UITableView *wishTable;

-(void)addWish;
@end

it already worked... can you figure it out?

thanks

link|improve this question

74% accept rate
3  
Show us mainController.h please. – mattjgalloway Jan 10 at 9:59
Is there a class defined with name mainController ? – user971401 Jan 10 at 10:01
I added mainController.h so you can see it also – Amit Hagin Jan 10 at 10:26
feedback

4 Answers

up vote 1 down vote accepted

This problem happen to me once.

I was importing the "APPDelegate.h" in my h file and in my APPDelegate.h I was importing the file too (it shouldn't be a problem but...)

What I did: I changed the Import from my own .h to .m and it worked :)

link|improve this answer
feedback

I figured out, that the same error appears if you have an import-cycle:

ClassA.h: #import "ClassB.h"

ClassB.h: #import "ClassA.h"

link|improve this answer
feedback

THis looks like a type. Usually the standard is that class names start with an uppercase character, so mainController should be MainController in your code. Check the class to see if this is the case because the error is telling you it cannot find any class called (m)ainController.

link|improve this answer
no... it's written correctly. as I said - it already worked – Amit Hagin Jan 10 at 10:06
feedback

Check the target and the files it is compiling. Perhaps mainController has some how been removed from that target. If so, when building, you would get the message that it cannot be found.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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