hi all,
i download the sample code from google(
http://code.google.com/p/gdata- objectivec-client/downloads/list) which is for Mac. and from using
this sample code, i use some method in my iPhone project.
In one place i get the error "error: expected ')' before
'GDataFeedPhotoUser'"
i declare the method as following
-(void)albumListFetchTicket: (GDataServiceTicket *)ticket
finishedWithFeed:(GDataFeedPhotoUser *)feed error:(NSError *)error
{
//
// //[self setAlbumFeed:feed];
// //[self setAlbumFetchError:error];
// //[self setAlbumFetchTicket:nil];
//
if (error == nil)
// {
// // load the Change Album pop-up button with the
// // album entries
// //[self updateChangeAlbumList];
}
//
// //[self updateUI];
}
what is the wrong with my definition ? It works well in sample code
which is for mac but not in my iPhone app.. Please suggest what I do?