Reputation: 5393
This interface is giving the errors:
@interface VideoFeedCollector : NSObject{
@public
NSData * received_data;
int feed_id;
BOOL transmitting;
}
THank you.
Upvotes: 2
Views: 1431
Reputation: 162712
Either a circular #import or a syntax error in the .m
file that imports this header or a syntax error in one of the headers.
Upvotes: 1