My Error is
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_BCSharingViewController", referenced from:
objc-class-ref in ViewController.o
My Error is
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_BCSharingViewController", referenced from:
objc-class-ref in ViewController.o
You can get this type of error if your class .m file is not listed under the "Compile Sources" step
of the "Build Phases" tab of your target. Insert BCSharingViewController.m class in Build Phases
manually & then check.