Profile *myProfile= [[Profile alloc]init];
[myProfile setName:@"Jhon Applesead"];
[myProfile setCompany:@"Apple"];
[myProfile release];
NSLog(@"Name is %@", [myProfile name]);
Log is
2013-02-28 15:41:36.866 Practice[8124:303] Name is Jhon Applesead