objective c - Use of undeclared identifier in main.m -


i'm starting objective-c , have problem.

the compiler giving me error message:

semantic issue: use of undeclared identifier 

and main.m code:

#import <uikit/uikit.h>  #import "hmjappdelegate.h"  int main(int argc, char *argv[]) {     @autoreleasepool {         return uiapplicationmain(argc, argv, nil, nsstringfromclass([hmjappdelegate class]));     }  } 

this error in main.m file.

how can fix problem?


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -