Коли я телефоную respondsToSelector
в середовищі ARC, я отримую таке повідомлення про помилкуAutomatic Reference Counting Issue
No known instance method for selector respondsToSelector:
Це заголовок
#import <AppKit/AppKit.h>
@class MTScrollView;
@protocol MTScrollViewDelegate
-(void)scrollViewDidScroll:(MTScrollView *)scrollView;
@end
@interface MTScrollView : NSScrollView
{
}
@property(nonatomic, weak) id<MTScrollViewDelegate>delegate;
@end
Це файл реалізації
#import "MTScrollView.h"
@implementation MTScrollView
@synthesize delegate;
- (void)reflectScrolledClipView:(NSClipView *)aClipView
{
[super reflectScrolledClipView:aClipView];
if([delegate respondsToSelector:@selector(scrollViewDidScroll:)])
{
[delegate scrollViewDidScroll:self];
}
}
@end
Будь-які пропозиції щодо того, чому я отримую цю помилку?
respondsToSelector
є методом екземпляра,NSObject
тому система повинна знати, що делегат є частиною підкласуNSObject