Search code examples
iosxcodeswiftcompiler-errorsios9

Swift Compiler Error: Use of unresolved identifier 'name'


I tried to include a class called 'name' and I got an error:

Swift Compiler Error: Use of unresolved identifier 'name'

The class exists and doesn't contain any compile errors.


Solution

  • There could be a few possible issues.

    1. One of the classes has a Testing target and other one doesn't. You have to even include all of your classes in the testing target or none of them.

    2. If it's Objective C class, check that the class is in ObjectiveC bridging header file.

    3. If it's NSManagedObject subclass. Add @objc(className) before the class declaration.

    4. If it's part of a different framework, make sure that the class or function is public