-
All replies
-
Helpful answers
-
Dec 14, 2014 4:37 PM in response to JustAnAppleGeekby etresoft,★HelpfulI'm guessing it was because you have duplicate symbols. It is probably something defined in a header file that should be in a source file.
-
Jul 30, 2016 9:36 AM in response to JustAnAppleGeekby GuyThackray,I had this issue and the reason I found was the following:
- in my appDelegate.h I had a const object defined 'const int kMaxRecordsOnDevice = 1;'
- it should have been a static declaration i.e. 'static int kMaxRecordsOnDevice = 1;'
This solved my issue
-
