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.
There could be a few possible issues.
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.
If it's Objective C class, check that the class is in ObjectiveC bridging header file.
If it's NSManagedObject subclass. Add @objc(className) before the class declaration.
@objc(className)
If it's part of a different framework, make sure that the class or function is public
public
1.4m articles
1.4m replys
5 comments
57.0k users