Описание класса Objective C: символы не найдены
Я уже некоторое время работаю над этим приложением для iPhone, и оно полностью закончено и работает. Проект, над которым я работал, был загружен из онлайн-хранилища Subversion, которое мой профессор также предоставил мне доступ. Я случайно не загрузил "корневую" копию или что-то в этом роде, поэтому я не смог зафиксировать какие-либо изменения в хранилище. С помощью моих инструкторов я сегодня скачал корневую копию и добавил в нее все свои файлы классов, чтобы я мог зафиксировать изменения. Тем не менее, сейчас я получаю 3 странные ошибки, которых я никогда раньше не видел:
Неопределенные символы:
"_OBJC_CLASS _ $ _ mapListViewController", на который ссылается: objc-class-ref-to-mapListViewController в mapViewController.o
"_OBJC_CLASS _ $ _ mapParser", на который ссылается: objc-class-ref-to-mapParser в mapViewController.o
"_OBJC_CLASS _ $ _ mapTabViewController", на который ссылается: objc-class-ref-to-mapTabViewController в mapViewController.o
ld: символ (ы) не найдены collect2: ld вернул 1 статус выхода
Это именно то сообщение об ошибке, которое я получаю. Я не изменил ни одного кода из версии, которая работала полностью ранее этим утром. Любой совет? Файл mapViewController, по-видимому, является причиной проблемы, так что вот что:
#import "mapViewController.h"
#import "locationDetailViewController.h"
#import "DPUAnnotation.h"
#import "mapParser.h"
#import "mapListViewController.h"
#import "mapTabViewController.h"
@implementation mapViewController
@synthesize locationManager, mapView, mapAnnotations, mParser, mapListView, tabView;
@class DPUAnnotation;
+ (CGFloat)annotationPadding;
{
return 10.0f;
}
+ (CGFloat)calloutHeight;
{
return 40.0f;
}
- (void)gotoLocation
{
// start off by default at DePauw campus
MKCoordinateRegion newRegion;
newRegion.center.latitude = 39.639348;
newRegion.center.longitude = -86.861231;
newRegion.span.latitudeDelta = 0.006776;
newRegion.span.longitudeDelta = 0.006291;
[self.mapView setRegion:newRegion animated:YES];
}
- (void)viewDidLoad {
self.title = @"Map";
mapView.mapType = MKMapTypeHybrid;
mapView.showsUserLocation = YES;
mapListView = [[mapListViewController alloc] initWithNibName:@"mapListView" bundle:nil];
tabView = [[mapTabViewController alloc] initWithNibName:@"mapTabViewController" bundle:nil];
if (mapAnnotations == nil)
{
self.mapAnnotations = [NSMutableArray array];
}
else
{
[mapAnnotations removeAllObjects];
}
UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"btn_home.png"] style:UIBarButtonItemStyleBordered target:self action:@selector(mainpageClicked)];
[self.navigationItem setLeftBarButtonItem:backButton];
UIBarButtonItem *mapListButton = [[UIBarButtonItem alloc] initWithTitle:@"Building List" style:UIBarButtonItemStylePlain target:self action:@selector(pushMapList)];
[self.navigationItem setRightBarButtonItem: mapListButton];
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];
[self gotoLocation];
self.mParser = [[[mapParser alloc] init] autorelease];
self.mParser.delegate = self;
[self.mParser start];
[super viewDidLoad];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:(BOOL)animated];
}
- (void)dealloc
{
[mapView release];
[locationManager release];
[mapAnnotations release];
[super dealloc];
}
/*
* Returns the User to the main Application Page
*/
- (IBAction)mainpageClicked
{
NSLog(@"Return To Main page Clicked");
[self.parentViewController dismissModalViewControllerAnimated:YES];
[self.navigationController release];
}
- (IBAction) pushMapList
{
tabView = [[mapTabViewController alloc] initWithNibName:@"mapTabViewController" bundle:nil];
tabView.mapAnnotations2 = mapAnnotations;
[self.navigationController pushViewController:tabView animated:YES];
[tabView release];
}
- (IBAction)addAnnotation
{
[self.mapView removeAnnotations:self.mapView.annotations];
for (int i = 0; i < [mapAnnotations count]; i++)
[mapView addAnnotation:[mapAnnotations objectAtIndex:i]];
NSLog(@"BLAH BLAH BLAH PLEASE PRINT");
if([mapAnnotations count] == 0)
NSLog(@"array is empty");
}
- (void)showDetails:(id)sender
{
NSInteger selectedIndex = [sender tag];
DPUAnnotation *selectedObject = [mapAnnotations objectAtIndex:selectedIndex];
[self.navigationController setToolbarHidden:YES animated:NO];
NSURL *url = [NSURL URLWithString: selectedObject.url];
locationDetailViewController *locationDetailView;
locationDetailView = [[locationDetailViewController alloc] initWithNibName:@"mapDetailView" bundle:nil];
[self.navigationController pushViewController:locationDetailView animated:YES];
[locationDetailView.webView loadRequest: [NSURLRequest requestWithURL:url]];
[locationDetailView release];
[selectedObject release];
}
- (MKAnnotationView *)mapView:(MKMapView *)theMapView viewForAnnotation:(id <MKAnnotation>)annotation
{
// if it's the user location, just return nil.
if ([annotation isKindOfClass:[MKUserLocation class]])
return nil;
if([[annotation subtitle] isEqualToString:@"Academic"])
{
// try to dequeue an existing pin view first
static NSString* annotationIdentifier = @"annotationIdentifier";
MKPinAnnotationView* pinView = (MKPinAnnotationView *)[theMapView dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier];
if (!pinView)
{
MKAnnotationView *annotationView = [[[MKAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:annotationIdentifier] autorelease];
annotationView.canShowCallout = YES;
UIImage *academicImage = [UIImage imageNamed:@"academic.png"];
CGRect resizeRect;
resizeRect.size = academicImage.size;
CGSize maxSize = CGRectInset(self.view.bounds,
[mapViewController annotationPadding],
[mapViewController annotationPadding]).size;
maxSize.height -= self.navigationController.navigationBar.frame.size.height + [mapViewController calloutHeight];
if (resizeRect.size.width > maxSize.width)
resizeRect.size = CGSizeMake(maxSize.width, resizeRect.size.height / resizeRect.size.width * maxSize.width);
if (resizeRect.size.height > maxSize.height)
resizeRect.size = CGSizeMake(resizeRect.size.width / resizeRect.size.height * maxSize.height, maxSize.height);
resizeRect.origin = (CGPoint){0.0f, 0.0f};
UIGraphicsBeginImageContext(resizeRect.size);
[academicImage drawInRect:resizeRect];
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
annotationView.image = resizedImage;
annotationView.opaque = NO;
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
NSInteger annotationValue = [self.mapAnnotations indexOfObject:annotation];
rightButton.tag = annotationValue;
[rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];
annotationView.rightCalloutAccessoryView = rightButton;
return annotationView;
}
else
{
pinView.annotation = annotation;
}
return pinView;
}
else if([[annotation subtitle] isEqualToString:@"Administrative"])
{
// try to dequeue an existing pin view first
static NSString* annotationIdentifier = @"annotationIdentifier";
MKPinAnnotationView* pinView = (MKPinAnnotationView *)[theMapView dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier];
if (!pinView)
{
MKAnnotationView *annotationView = [[[MKAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:annotationIdentifier] autorelease];
annotationView.canShowCallout = YES;
UIImage *administrativeImage = [UIImage imageNamed:@"administrative.png"];
CGRect resizeRect;
resizeRect.size = administrativeImage.size;
CGSize maxSize = CGRectInset(self.view.bounds,
[mapViewController annotationPadding],
[mapViewController annotationPadding]).size;
maxSize.height -= self.navigationController.navigationBar.frame.size.height + [mapViewController calloutHeight];
if (resizeRect.size.width > maxSize.width)
resizeRect.size = CGSizeMake(maxSize.width, resizeRect.size.height / resizeRect.size.width * maxSize.width);
if (resizeRect.size.height > maxSize.height)
resizeRect.size = CGSizeMake(resizeRect.size.width / resizeRect.size.height * maxSize.height, maxSize.height);
resizeRect.origin = (CGPoint){0.0f, 0.0f};
UIGraphicsBeginImageContext(resizeRect.size);
[administrativeImage drawInRect:resizeRect];
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
annotationView.image = resizedImage;
annotationView.opaque = NO;
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
NSInteger annotationValue = [self.mapAnnotations indexOfObject:annotation];
rightButton.tag = annotationValue;
[rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];
annotationView.rightCalloutAccessoryView = rightButton;
return annotationView;
}
else
{
pinView.annotation = annotation;
}
return pinView;
}
else if([[annotation subtitle] isEqualToString:@"University Housing"] || [[annotation subtitle] isEqualToString:@"Residence Halls"] || [[annotation subtitle] isEqualToString:@"University Duplexes"] || [[annotation subtitle] isEqualToString:@"Greek Housing"])
{
// try to dequeue an existing pin view first
static NSString* annotationIdentifier = @"annotationIdentifier";
MKPinAnnotationView* pinView = (MKPinAnnotationView *)[theMapView dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier];
if (!pinView)
{
MKAnnotationView *annotationView = [[[MKAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:annotationIdentifier] autorelease];
annotationView.canShowCallout = YES;
UIImage *housingImage = [UIImage imageNamed:@"housing.png"];
CGRect resizeRect;
resizeRect.size = housingImage.size;
CGSize maxSize = CGRectInset(self.view.bounds,
[mapViewController annotationPadding],
[mapViewController annotationPadding]).size;
maxSize.height -= self.navigationController.navigationBar.frame.size.height + [mapViewController calloutHeight];
if (resizeRect.size.width > maxSize.width)
resizeRect.size = CGSizeMake(maxSize.width, resizeRect.size.height / resizeRect.size.width * maxSize.width);
if (resizeRect.size.height > maxSize.height)
resizeRect.size = CGSizeMake(resizeRect.size.width / resizeRect.size.height * maxSize.height, maxSize.height);
resizeRect.origin = (CGPoint){0.0f, 0.0f};
UIGraphicsBeginImageContext(resizeRect.size);
[housingImage drawInRect:resizeRect];
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
annotationView.image = resizedImage;
annotationView.opaque = NO;
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
NSInteger annotationValue = [self.mapAnnotations indexOfObject:annotation];
rightButton.tag = annotationValue;
[rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];
annotationView.rightCalloutAccessoryView = rightButton;
return annotationView;
}
else
{
pinView.annotation = annotation;
}
return pinView;
}
else if([[annotation subtitle] isEqualToString:@"Other"])
{
// try to dequeue an existing pin view first
static NSString* annotationIdentifier = @"annotationIdentifier";
MKPinAnnotationView* pinView = (MKPinAnnotationView *)[theMapView dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier];
if (!pinView)
{
MKAnnotationView *annotationView = [[[MKAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:annotationIdentifier] autorelease];
annotationView.canShowCallout = YES;
UIImage *otherImage = [UIImage imageNamed:@"other.png"];
CGRect resizeRect;
resizeRect.size = otherImage.size;
CGSize maxSize = CGRectInset(self.view.bounds,
[mapViewController annotationPadding],
[mapViewController annotationPadding]).size;
maxSize.height -= self.navigationController.navigationBar.frame.size.height + [mapViewController calloutHeight];
if (resizeRect.size.width > maxSize.width)
resizeRect.size = CGSizeMake(maxSize.width, resizeRect.size.height / resizeRect.size.width * maxSize.width);
if (resizeRect.size.height > maxSize.height)
resizeRect.size = CGSizeMake(resizeRect.size.width / resizeRect.size.height * maxSize.height, maxSize.height);
resizeRect.origin = (CGPoint){0.0f, 0.0f};
UIGraphicsBeginImageContext(resizeRect.size);
[otherImage drawInRect:resizeRect];
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
annotationView.image = resizedImage;
annotationView.opaque = NO;
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
NSInteger annotationValue = [self.mapAnnotations indexOfObject:annotation];
rightButton.tag = annotationValue;
[rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];
annotationView.rightCalloutAccessoryView = rightButton;
return annotationView;
}
else
{
pinView.annotation = annotation;
}
return pinView;
}
else if([[annotation subtitle] isEqualToString:@"Fields"])
{
// try to dequeue an existing pin view first
static NSString* annotationIdentifier = @"annotationIdentifier";
MKPinAnnotationView* pinView = (MKPinAnnotationView *)[theMapView dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier];
if (!pinView)
{
MKAnnotationView *annotationView = [[[MKAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:annotationIdentifier] autorelease];
annotationView.canShowCallout = YES;
UIImage *athleticsImage = [UIImage imageNamed:@"athletics.png"];
CGRect resizeRect;
resizeRect.size = athleticsImage.size;
CGSize maxSize = CGRectInset(self.view.bounds,
[mapViewController annotationPadding],
[mapViewController annotationPadding]).size;
maxSize.height -= self.navigationController.navigationBar.frame.size.height + [mapViewController calloutHeight];
if (resizeRect.size.width > maxSize.width)
resizeRect.size = CGSizeMake(maxSize.width, resizeRect.size.height / resizeRect.size.width * maxSize.width);
if (resizeRect.size.height > maxSize.height)
resizeRect.size = CGSizeMake(resizeRect.size.width / resizeRect.size.height * maxSize.height, maxSize.height);
resizeRect.origin = (CGPoint){0.0f, 0.0f};
UIGraphicsBeginImageContext(resizeRect.size);
[athleticsImage drawInRect:resizeRect];
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
annotationView.image = resizedImage;
annotationView.opaque = NO;
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
NSInteger annotationValue = [self.mapAnnotations indexOfObject:annotation];
rightButton.tag = annotationValue;
[rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];
annotationView.rightCalloutAccessoryView = rightButton;
return annotationView;
}
else
{
pinView.annotation = annotation;
}
return pinView;
}
else if([[annotation subtitle] isEqualToString:@"Landmarks"])
{
// try to dequeue an existing pin view first
static NSString* annotationIdentifier = @"annotationIdentifier";
MKPinAnnotationView* pinView = (MKPinAnnotationView *)[theMapView dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier];
if (!pinView)
{
MKAnnotationView *annotationView = [[[MKAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:annotationIdentifier] autorelease];
annotationView.canShowCallout = YES;
UIImage *landmarkImage = [UIImage imageNamed:@"landmark.png"];
CGRect resizeRect;
resizeRect.size = landmarkImage.size;
CGSize maxSize = CGRectInset(self.view.bounds,
[mapViewController annotationPadding],
[mapViewController annotationPadding]).size;
maxSize.height -= self.navigationController.navigationBar.frame.size.height + [mapViewController calloutHeight];
if (resizeRect.size.width > maxSize.width)
resizeRect.size = CGSizeMake(maxSize.width, resizeRect.size.height / resizeRect.size.width * maxSize.width);
if (resizeRect.size.height > maxSize.height)
resizeRect.size = CGSizeMake(resizeRect.size.width / resizeRect.size.height * maxSize.height, maxSize.height);
resizeRect.origin = (CGPoint){0.0f, 0.0f};
UIGraphicsBeginImageContext(resizeRect.size);
[landmarkImage drawInRect:resizeRect];
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
annotationView.image = resizedImage;
annotationView.opaque = NO;
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
NSInteger annotationValue = [self.mapAnnotations indexOfObject:annotation];
rightButton.tag = annotationValue;
[rightButton addTarget:self action:@selector(showDetails:) forControlEvents:UIControlEventTouchUpInside];
annotationView.rightCalloutAccessoryView = rightButton;
return annotationView;
}
else
{
pinView.annotation = annotation;
}
return pinView;
}
return nil;
}
#pragma mark <mapParser> Implementation
- (void)parser:(NSXMLParser *)parser didFailWithError:(NSError *)parseError {
}
- (void)parserDidEndParsingData:(mapParser *)parser
{
[self addAnnotation];
tabView.mapAnnotations2 = mapAnnotations;
self.mParser = nil;
[mParser release];
}
- (void)parser:(mapParser *)parser didParseItem:(NSArray *)parsedItem
{
NSLog(@"Did Parse Map Item");
[self.mapAnnotations addObjectsFromArray:parsedItem];
}
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error {}
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark {}
@end
4 ответа
Скорее всего, эти три класса отсутствуют в файле вашего проекта. Проверьте группу Classes в вашем проекте XCode, чтобы увидеть, присутствуют ли эти три файла. Если нет, щелкните правой кнопкой мыши группу "Классы" и выберите "Добавить"> "Существующие файлы", чтобы добавить их.
Если файлы добавлены в проект, убедитесь, что файлы реализации (.m) для этих отсутствующих классов добавлены в скомпилированные источники. Чтобы проверить это, разверните группу Targets > your application target > Compile Sources
и посмотреть, если файлы присутствуют. Если нет, щелкните правой кнопкой мыши на "Compile Sources" и перейдите Add > Existing Files
добавить их. Альтернативный и, возможно, более быстрый способ сделать то же самое - выбрать файлы.m для каждого из отсутствующих классов и посмотреть, установлен ли флажок "бычий глаз" в крайнем правом углу. Если нет, то отметьте его, и он автоматически будет добавлен в скомпилированные источники.
"_OBJC_CLASS_$_mapListViewController", на который ссылается: objc-class-ref-to-mapListViewController в mapViewController.o
"_OBJC_CLASS _ $ _ mapParser", на который ссылается: objc-class-ref-to-mapParser в mapViewController.o
"_OBJC_CLASS _ $ _ mapTabViewController", на который ссылается: objc-class-ref-to-mapTabViewController в mapViewController.o
ld: символ (ы) не найдены collect2: ld вернул 1 статус выхода
Убедитесь, что все (mapListViewController,mapParser,mapTabViewController) имеют @interface & @implementation
это решит мою проблему. я скучаю смотреть @implementation не хватало
У меня была та же проблема, которую я решил, добавив Framework в xCode
Когда вы добавляете CoreGraphics libraray.you нужно выбрать имя_проекта-> цели / выбрать имя проекта (не выбирать имя теста проекта, вы сталкиваетесь с ошибкой)->buildsetting-> и добавить CoreLocation.framework
У меня была эта проблема, когда я пытался pod 'FirebaseRemoteConfig
внутри расширений приложения. я добавил $(inherited)
вместо -ObjC
на другие флаги компоновщика в настройках сборки целевого объекта Extension.
https://i.s tack.imgur.com/Au9Wl.png
Надеюсь, это кому-нибудь поможет. Я потерял 1 час, чтобы найти это решение.