Hi,
I am new to xCode coding, so I have a few questions.
I am currently using the latest xCode to develope iPhone app.
To import the framework, do I import the entire folder or do I only have to drag certain files into the project folder?
And when I imported the DDFileLogger framework,I'm getting unexpected '@' in program errors in DDFileLogger.m:
- (NSString *)description
{
return [@{@"filePath": self.filePath,
@"fileName": self.fileName,
@"fileAttributes": self.fileAttributes,
@"creationDate": self.creationDate,
@"modificationDate": self.modificationDate,
@"fileSize": @(self.fileSize),
@"age": @(self.age),
@"isArchived": @(self.isArchived)} description];
}
Please provide possible solutions to fix this.
Thank You Very Much!,
-Ryan