From this link CHCSVParser, I followed step by step method and I get 1 error
/CHCSVParser.h Semantic Issue- Property attributes 'assign' and 'weak' are mutually exclusive
I have been trying to implement this from 5 days now.I have tried many methods but still unable to resolve this error. Please guide me to resolve this. I am a noob in iOS.Thanks
Personally, I would suggest simply removing the
__weakdesignator for theparserDelegatedefinition inCHCSVParser.h. This is non-ARC code, anyway, soassignis good enough.By the way, are you using this in an ARC project? If so, you’ll have to tell your project that these files are not employing Automatic Reference Counting using the
-fno-objc-arcflag: