I have downloaded speadsheets before with GoogleDocs Spreadsheet API, but never with headers that have spaces in between them.
Was assuming that this will work with header titles with no spaces, but was wrong. Remove the spaces between the title wording and the API continue to work as before.
No sure if this is a bug, but it seem strange that header titles cannot have spaces between words.
Example Headers before, not working
Display Name E-mail Address
Example Headers after, working
DisplayName E-mailAddress
for (int count = 0; count < entriesCount; count++) {
entry = [[mEntryFeed entries] objectAtIndex:count];
listEntry = (GDataEntrySpreadsheetList *)entry;
customElements = [listEntry customElementDictionary];
enumerator = [customElements objectEnumerator];
while ((element = [enumerator nextObject]) != nil) {
kName = [element name];
kValue = [element stringValue];
NSLog(@”kName kValue %@”, kName, kValue);
…

