Hi Folks
I have an NSMutableArray which is filled with values from a database.
The array name is "labs" and when debugging, labs is filled with the correct values. see "screenshot.png":
I then use: NSEnumerator to step through the array:
Code:
NSEnumerator *e = [labs objectEnumerator];
NSString *mailMessage = @"";
id object;
while (object = [e nextObject]) {
// do something with object
mailMessage = ???;
}
I can't seem to figure out how to fill mailMessage with the text from one of the fields within labs. eg. labs.DataBase.Name
Could some one please help?
Thanks in advance.
Anton