Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a subclass of UIView, that have inherited the - initWithFrame: method. However, I don't want that method to be called on my subclass. Is there any way to "delete" that method on my subclass?

share|improve this question

1 Answer

up vote 6 down vote accepted

Don't implement it and don't call [super initWithFrame:aRect]. Just call doesNotRecognizeSelector: with the _cmd argument:

- (id)initWithFrame:(CGRect)aRect
{
    [self doesNotRecognizeSelector:_cmd];
}

If the method does not return void, you will receive a warning from the compiler:

Control reaches end of non-void function.

To "remove" this warning, add return self; (in this case) as the last line to make the compiler happy. It will never be reached at runtime because doesNotRecognizeSelector: raises a NSInvalidArgumentException exception.

share|improve this answer
This produces me a warning "Control reaches end of non-void function". Is there any way for delete that warning? – Δ developer May 27 '12 at 14:50
I have added the solution to my answer. – Evan Mulawski May 27 '12 at 14:54
Thanks! Your answer merits more than 1 upvote!! – Δ developer May 27 '12 at 14:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.