Hi, I am learning iPhone development. In the book examples, there is @synthesize keyword is mentioned for properties.
For a control, I define property in .h file but NOT @synthesize in .m file. I am accessing to property of text box with .text attribute. Also I have linked outlets of a text box, and text box's name is different than the property name.
And code runs fine; so is @synthesize keyword not needed? and When?