Thank you, Smasher!
I think I made the first case error in the .h file. Then as I typed in the .m file, intellisense (or whatever its called) filled in code as I typed.
I'm going to have to be careful.
VB/VBA that is my forte is not case sensitive. A learning experience for sure.
Brooks
Quote:
Originally Posted by smasher
In the two lines that give errors, you have MyViewController where you should have myViewController (lower case m).
MyViewController is a class you've created (classes usually start with ipper case letters, by tradition.)
myViewController is an "instance" of that class - it's the variable/property, and it's what you should be using in @synthesize and [myViewController view]
|