I installed the open source library with Cocoapods, where I can make adjustments, but I can not import the file in my own project into an open source file. Is it possible? Below are the features I tried
#import "MyClassFileInOwnProject.h" -- Error: file not found
#import <MyClassFileInOwnProject.h> -- Error: file not found
#import "ProjectFolderName/MyClassFileInOwnProject.h" -- Error: file not found
#import <ProjectFolderName/MyClassFileInOwnProject.h> -- Error: file not found
source
share