I\'m getting the error above, but unsure how to go about fixing it. This is my code:
.h:
#import @protocol ColorLineDelegate &
Perhaps a bit late but to be "ARC compliant", you simply have to replace
@property (nonatomic, assign) id delegate;
by
@property (nonatomic, strong) id delegate;
Bye.