The first row would go like this:
Year Month Week Day Score
Subsequent rows would look like this:
2009 12 1 12/1/2009 5000
Should I be using GDataEntrySpreadsheetList or
GDataEntrySpreadsheetTable to update the spreadsheet?
Also, once I authenticate, if the spreadsheet does not currently
exist, I want to create a new spreadsheet with just the top row. Do I
have to upload a CSV file, or can I do it programatically through the
API?
Thank you for your time!
On a more Objective-C topic, when it comes to inserting row data
beneath the columns, do I specify the Column Letter, like A,B,C, or
the name of the value at the top, like Date or Score? I'm trying to
make sense of some of the comments in the classes. See
GDataSpreadsheetData.h :
// For table data, like
// <gs:data startRow="2" numRows="6" >
// <gs:column index="a" name="Name" />
// <gs:column index="b" name="Birthday" />
// </gs:data>
When I wrap my Year, Month, Week, Date, Score data, do I reference it
like ColumnIndex:A name:@"Year"? The first comment indicates
startRow, which means I am not necessarily inserting on the top line.
How can I be sure that all column data gets entered in the correct
column?
Thanks Greg,
Justin