I have been looking through sample code and books about the iPhone SDK for about 5 days now. I have limited understanding about these things, even after multiple "blackbox" tests. Questions:
lets say I have:
NSString *input = self.textField.text;
...
How can I test the String's value to another string?
By this is mean why wont this
if(input == @"whatever) { ... }
work?
I also have questions about ViewControllers and CGRects: what are they? When do I use them?
Any help is appreciated because I am frustrated and tired of this.
lets say I have:
NSString *input = self.textField.text;
...
How can I test the String's value to another string?
By this is mean why wont this
if(input == @"whatever) { ... }
work?
I also have questions about ViewControllers and CGRects: what are they? When do I use them?
Any help is appreciated because I am frustrated and tired of this.