No type or storage class may be specified here before 'interface'/'interface' iOS Error (Corrupted Xcode?)
This interface is giving the errors:
@interface VideoFeedCollector : NSObject{
@public
NSData * rece开发者_如何学Cived_data;
int feed_id;
BOOL transmitting;
}
THank you.
No @end with one of the interface declarations.
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.
精彩评论