I created a protocol file “Protocol.h” and tried to import it into a view controller header .h file with
#import <Foundation/Foundation.h>
#import "Protocol.h"
However, XCode notes that the file “Protocol.h” cannot be found. Why not? Is is definitely in the same folder as the view controller header.
It’s case-sensitive — is your file Protocol.h with the correct capitalization?