So I built an application which compiles and runs fine from Xcode. Now I want to distribute it to other people so they can use it. How do I do that correctly?
I thought it was as simple as archiving it, and then sharing it as a .pkg or an application. But whenever I open up the application it crashes with the following message:
Application Specific Information:
dyld: launch, loading dependent libraries
Dyld Error Message:
Symbol not found: _OBJC_CLASS_$_CPTBorderedLayer
Referenced from: /Users/USER/Desktop/StoreMon.app/Contents/MacOS/
StoreMon
Expected in: /Library/Frameworks/CorePlot.framework/Versions/A/
CorePlot
in /Users/USER/Desktop/StoreMon.app/Contents/MacOS/StoreMon
I am using the Core Plot framework.
The _CPTBorderedLayer
class is part of that framework. How do I package this framework into my app correctly?