コアデータモデルクラスをカスタムアノテーションとして使用しようとしましたが、何とかviewForAnnotationが呼び出されません。ここで MapKitのコアデータモデルクラスを使用してアノテーションを追加できません
は、すべてのコアデータがスニペット含まれており、私は、デリゲートメソッドを実装する方法#import "SkyCastViewController.h"
#import "AppDelegate.h"
#import "Pixel-Swift.h"
#import "Photo+Annotation.h"
static NSString* const NavigationBarTitleFontName = @"Avenir-Heavy";
static CGFloat const NavigationBarTitleFontSize = 17;
static NSString* const MapViewReuseIdentifier = @"AnnotationViweIden";
@interface SkyCastViewController() <MKMapViewDelegate>
@property (weak, nonatomic) IBOutlet MKMapView *mapView;
@property (strong, nonatomic) NSArray* photos;
@property (strong, nonatomic) UIManagedDocument* document;
@end
@implementation SkyCastViewController
- (void) viewDidLoad{
[super viewDidLoad];
[self updateUI];
self.mapView.delegate = self;
}
- (void) viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
NSFileManager* fileManager = [NSFileManager defaultManager];
NSURL* docsDir = [fileManager URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask].firstObject;
if(docsDir){
NSURL* url = [docsDir URLByAppendingPathComponent:@"storage"];
self.document = [[UIManagedDocument alloc] initWithFileURL: url];
if(self.document.documentState != UIDocumentStateNormal){
if([[NSFileManager defaultManager] fileExistsAtPath: url.path]){
//the document exists, open it
[self.document openWithCompletionHandler:^(BOOL success){
if(success){
[self documentInit];
}
}];
}else{
//the document does not exist, create one
[self.document saveToURL:url forSaveOperation: UIDocumentSaveForCreating completionHandler:^(BOOL success){
//post a notification that document is ready
if(success){
NSLog(@"saveToURL succeed");
}else{
NSLog(@"saveToURL falied");
}
}];
}
}
}
}
// document ready observer
- (void) documentInit{
dispatch_async(dispatch_get_main_queue(), ^{
NSManagedObjectContext* context = self.document.managedObjectContext;
NSError* error;
//fetch objects
NSFetchRequest* request = [[NSFetchRequest alloc] initWithEntityName:@"User"];
request.fetchBatchSize = 10;
request.fetchLimit = 100;
NSString* nameAttr = @"name";
NSString* nameValue = @"Kesong Xie";
request.predicate = [NSPredicate predicateWithFormat:@"%K like %@", nameAttr, nameValue];
NSArray* users = [context executeFetchRequest:request error: &error];
if(error != nil){
NSLog(@"%@", error.localizedDescription);
}else{
if([users count] > 0){
for(User* user in users){
self.photos = (NSArray<Photo<MKAnnotation>*>*)user.photo.allObjects;
[self.mapView addAnnotations:self.photos];
}
}
}
NSLog(@"%@", self.photos);
// [self.mapView showAnnotations: self.photos animated: YES];
});
}
//MARK: - UPATE UI
- (void) updateUI{
[self.navigationController.navigationBar setBarTintColor: [UIColor blackColor]];
UIFont* titleFont = [UIFont fontWithName: NavigationBarTitleFontName size: NavigationBarTitleFontSize];
[self.navigationController.navigationBar setTitleTextAttributes:@{NSFontAttributeName: titleFont, NSForegroundColorAttributeName: [UIColor whiteColor]}];
}
- (UIStatusBarStyle) preferredStatusBarStyle{
return UIStatusBarStyleLightContent;
}
//MARK: - MKMapViewDelegate
-(MKAnnotationView*) mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation{
NSLog(@"called from viewForAnnotation");
if([annotation isKindOfClass:[ MKUserLocation class]]){
return nil;
}
MKAnnotationView* annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier: MapViewReuseIdentifier];
if(!annotationView){
annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:MapViewReuseIdentifier];
}else{
annotationView.annotation = annotation;
}
UIImage* shot = [[UIImage alloc] initWithContentsOfFile:@"shot3"];
annotationView.image = shot;
annotationView.frame = CGRectMake(0, 0, 60, 60);
annotationView.clipsToBounds = YES;
return annotationView;
}
@end
は今コンソールに出力のみが
Pixel[1832:440548] (
"<Pixel.Photo: 0xa03a400> (entity: Photo; id: 0x17e905f0 <x-coredata://FB9198FE-57D1-4C88-945B-0B04D49821C0/Photo/p42> ; data: {\n latitude = \"32.88831721994364\";\n longitude = \"-117.2413945199151\";\n thumbnailData = nil;\n time = nil;\n title = \"Beach Walking\";\n whoTook = \"0xa040660 <x-coredata://FB9198FE-57D1-4C88-945B-0B04D49821C0/User/p10>\";\n})",
"<Pixel.Photo: 0xa039440> (entity: Photo; id: 0xa038b40 <x-coredata://FB9198FE-57D1-4C88-945B-0B04D49821C0/Photo/p43> ; data: {\n latitude = \"32.88831721994364\";\n longitude = \"-117.2413945199151\";\n thumbnailData = nil;\n time = nil;\n title = \"Aerial Shots of Sedona Arizona\";\n whoTook = \"0xa040660 <x-coredata://FB9198FE-57D1-4C88-945B-0B04D49821C0/User/p10>\";\n})"
)
コアデータの前に印刷する場合は、その時点ですべての注釈を設定していないのですか?マップビューで、コアデータエントリに関連付けられたアノテーションをどのように表示するかを知ることができますか? –
私はView Controllerを接続していますが、このコントローラー内のすべてのコアデータを移動して、より明確に見ることができます。今更新されたコードは、MKAnnotationに適合するコアデータ 'Photo:NSManagedObject'を使っていくつかのピンを設定しようとしています。 –