I have a static library project and an iOS project in one workspace. There is a class FCPlayerData
in the static library. I subclass FCPlayerData
as PlayerData
in the iOS project.
The problem:
I need the static library to reference PlayerData
(the subclass) that is in the iOS project but it doesn't recognise any of the properties of PlayerData
and when CMD clicked, says "Symbol not found". How can I import the subclass from the iOS project into the static library?
Thanks in advance.