I am trying to add a row to an existing table using a list feed. But every time I get the following error: "rror Domain = com.google.GDataServiceDomain Code = 400 UserInfo = 0xeddae4" The operation could not be completed. (Empty lines cannot be written; use delete instead.) "
I am using the following code
GDataEntrySpreadsheetList *listEntry = [GDataEntrySpreadsheetList listEntry]; GDataSpreadsheetCustomElement *serialNo = [GDataSpreadsheetCustomElement elementWithName:@"SNo" stringValue:@"1"]; [array addObject:serialNo]; [[listEntry customElements] initWithArray:array];
It seems I am doing something wrong during listEntry initialization.
can someone help me about this or please provide me a sample code to insert a row into a google spreadsheet in Objective C.
Thanks in advance.
source share