Matthew Mitchell
Matthew Mitchell

Reputation: 5393

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 * received_data;
    int feed_id;
    BOOL transmitting;
}

THank you.

Upvotes: 2

Views: 1431

Answers (2)

Matthew Mitchell
Matthew Mitchell

Reputation: 5393

No @end with one of the interface declarations.

Upvotes: 6

bbum
bbum

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

Related Questions