i know that this is a silly question but what is the difference between this @property declaration and the declaration inside the curly brackets, or i can just also do
@property(nonatomic, strong) NSMutableString *current
list too instead of writting it inside the curly brackets
@interface XMLParser : NSObject <NSXMLParserDelegate>
{
NSMutableString *currentList;
NSXMLParser *parser;
dataFileHolder *dataCurrent;
}
@property(nonatomic, strong) NSMutableArray *listPopulated;