I am trying to make a universal framework, for iOS by following steps specified in this URL: Universal-framework-iOS
I have a viewController class within, that frame
Try this in main.m
#import "ViewControllerWithinFramework.h" //import this
int main(int argc, char *argv[])
{
@autoreleasepool
{
[ViewControllerWithinFramework class]; //call class function
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
I hope this will work for you.