I have created my own framework which has storyboard. I have imported the framework in my project but when I tried to access the storyboard from framework with below code I am getting error
"Exception: Could not find a storyboard named 'AssignTasks' in bundle NSBundle".
can we have UI in framework? can anyone help me here?
NSBundle *bundleName = [NSBundle bundleWithIdentifier:@"bundle id of framework"];
UIStoryboard *stainStoryboard = [UIStoryboard storyboardWithName:@"AssignTasks" bundle: bundleName];
self.assignTasksListView = (AssignTasksListView*)[stainStoryboard instantiateViewControllerWithIdentifier: @"AssignTasksListView"];