I am trying to do very simple operation.
in "TestFile.h" file i've declare property:
@property (nonatomic) NSDictionary *justTest;    
and in implementation file "TestFile.m":
-(NSDictionary *)justTest:(NSString *) mystring {
NSLog(@"Here is my string: %@", mystring);
return nil;
}
Now i am trying to call "justTest" from another file. What i am doing:
 #import "TestFile.h"
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
  NSDictionary *testFile = [[TestFile alloc] init];
  [testFile justTest:@"Hello World!"]
}     
This works fine until i'm trying to pass parameter.
if i just execute
[testFile justTest];    
it works, but when i try to pass parameter
[testFile justTest:@"Hello World!"];    
does not work and the debug message is:
no visible @interface for 'TestFile' declares the selector 'justTest':    
What is wrong with me?
 
     
    