Im reading a book and in the sample code they show how to assign the value of a NSTextField to another NSTextField like this:
self.theStory.text = self.theTemplate.text;
When I try to do the same without using Dot Notation:
[[self theStory]text] = [[self theTemplate]text];
I get the following error: Expression is not assignable.
Im new to Objective-C, any help will be appreciated.