If both ProductsController and CategoriesController both inherit from GenericController, what is a good way to get the string products in the base class when the URL is pointing to the Products contro
Ok... in Objective C you can new up a subclass from a static method in the base class with \'new this()\' because in a static method, \'this\' refers to the class, not the instance.That was a pretty d
I have the following two classes. class Settings { function __CONSTRUCT() { echo \"Settings Construct\"; } }
i have an accounts class from that i have 3 types of accounts savings, credit, and homeloan. i created a binary search tree to hold all the accounts as type account
I was surprised to to learn that a class variable of a subclass can\'t access a class variable of the parent without specifically indicating the class name of the parent:
As an example, when I\'m using an NSMutableDictionary, I know it inherits all the methods of NSDictionary, but how can I know/trust that it has overridden the behavior of those methods if I want to us
So I subclassed UIViewController and in the nib I have a UIView, and in it a tableview. It is my understanding that both UIViewController and UIView are subclasses of UIResponder, so they should recei
I was wondering how the UILabel that displays the website\'s title in Mobile Safari is created? It\'s obviously some kind of a subclass and I\'ve attempted to copy it by using my own subclass,but it j
How do I get a method using reflection based on a parameter value when the parameter type is an interface?
i have a class, in which i am initialising another class that i have made. the other class that i have made has a subclass with only a few changes (none to the init method). What i am wondering is wil