In my code I want to create coordinates values from array:
for(int i=1; i<[appDelegate.latitudeArray count]; i++) {
Koordinate *coord = [[Koordinate alloc] init];
coord.latitude = [[appDelegate.latitudeArray objectAtIndex:i] floatValue];
coord.longtitude = [[appDelegate.longitudeArray objectAtIndex:i] floatValue];
}
But i am getting error as Koordinate undeclared. I have also added CoreLocation Framework.
First there is no class named
Koordinate, there is onlyCLLocationCoordinate2Dwhich is a struct