I need to hide (make private) the -init method of my class in Objective-C.
How can I do that?
|
1
|
I need to hide (make private) the How can I do that?
|
|||
|
|
|
|
Objective-C, like Smalltalk, has no concept of "private" versus "public" methods. Any message can be sent to any object at any time. What you can do is throw an
The other alternative — which is probably far better in practice — is to make If you're trying to do this because you're trying to "ensure" a singleton object is used, don't bother. Specifically, don't bother with the "override Instead, just write your code such that your |
||||||
|
|
|
That depends on what you mean by "make private". In Objective-C, calling a method on an object might better be described as sending a message to that object. There's nothing in the language that prohibits a client from calling any given method on an object; the best you can do is not declare the method in the header file. If a client nevertheless calls the "private" method with the right signature, it will still execute at runtime. That said, the most common way to create a private method in Objective-C is to create a Category in the implementation file, and declare all of the "hidden" methods in there. Remember that this won't truly prevent calls to MyClass.m
There's a decent thread on MacRumors.com about this topic. |
||||||
|
|
|
If you are talking about the default -init method then you can't. It's inherited from NSObject and every class will respond to it with no warnings. You could create a new method, say -initMyClass, and put it in a private category like Matt suggests. Then define the default -init method to either raise an exception if it's called or (better) call your private -initMyClass with some default values. One of the main reasons people seem to want to hide init is for singleton objects. If that's the case then you don't need to hide -init, just return the singleton object instead (or create it if it doesn't exist yet). |
||
|
|
|
|
Nathan, how will returning a singleton from -init work? -init is an instance method. In other words, to call it, someone will be allocating memory each time, like [[ClassName alloc] init], which isn't ideal -- it's a waste of memory. For the singleton pattern, you surely want a class method, not an instance method, to return the singleton, e.g. a method like +sharedMyClass. |
||
|
|