NSMutableArray *appList; //this is in the interface file
appList = [NSMutableArray array]; //this is in init
- (NSMutableArray)getApplicationList //this is the problem method
{
return appList;
}
Why is Project Builder returning the following for the above method:
incompatible types in return
Thanks in advance!
David