| Author |
Help a noob with inheritance
|
Ben Alex Barreto
Greenhorn
Joined: May 10, 2011
Posts: 15
|
|
So I've been trying to learn Objective-C, and yesterday I was looking at how inheritance works.
I created two classes, Person and Employee. The later is supposed to inherit from Person. The problem is that I'm getting this error "No visible @inerface for Employee" when I try to instantiate an Employee and set its weightInKilos or heightInMeters. Here are the header and implementation files:
And here is the main
I'm just trying to learn. What am I doing wrong?
|
-ben
|
 |
Hussein Baghdadi
clojure forum advocate
Bartender
Joined: Nov 08, 2003
Posts: 3359
|
|
I copied your code and run it with a flying colors without any error.
Do you a duplicated file here and there (such as Person.h/Person.m/Employee.h/Employee.m) ?
|
 |
 |
|
|
subject: Help a noob with inheritance
|
|
|