I am using the google calendar api and I am getting two errors.
GTMGatherInputStream.m:25:13: Multiple methods named 'initWithArray:' found
#import "GTMGatherInputStream.h" @implementation GTMGatherInputStream + (NSInputStream *)streamWithArray:(NSArray *)dataArray { return [[[self alloc] initWithArray:dataArray] autorelease]; //error on this line }
GTMOAuth2Authentication.h:31:11: 'GTMSessionFetcher.h' file not found
#if GTM_USE_SESSION_FETCHER #import "GTMSessionFetcher.h" //GTMSessionFetcher.h file not found error #else #import "GTMHTTPFetcher.h" #endif // GTM_USE_SESSION_FETCHER
I have researched the error everywhere online and I have found nothing. I am running GM El capitan with GM Xcode 7.0. I Have tried multiple different ways on solving it and nothing has worked. My code will not compile. How do I fix this?
See Question&Answers more detail:os