現在、「changeMapTypのプロトコル宣言が見つかりません」というエラーが表示されますが、その理由がわかりません。必要なファイルをすべてインポートしましたが、問題は解決していません。
#import MapsViewController.h
コメントで述べたように、を削除するとエラーメッセージが消えますが、MapsBackgroundViewController.h
この行を書き込む必要があるため、行を削除できません
MapsViewController *myMapsViewController = [[MapsViewController alloc] init];
[self setDelegate:myMapsViewController];
私の代理人を設定します。私は正しいですか?
これが私のコードです:
MapsBackgroundViewcontroller.h
#import "MapsViewController.h"
@protocol ChangeMapTyp <NSObject>
@required
- (void)segmentedControllChangedMapType:(MKMapType) type ;
@end
@interface MapBackgroundViewController : UIViewController{
IBOutlet UISegmentedControl *segmentedControl;
MKMapType mapType;
id < ChangeMapTyp> delegate;
}
@property (nonatomic) IBOutlet UISegmentedControl *segmentedControl;
@property(nonatomic) MKMapType mapType;
@property(nonatomic)id delegate;
- (IBAction)segmentedControllChanged:(id)sender;
MapsBackgroundViewController.m
#import "MapBackgroundViewController.h"
@interface MapBackgroundViewController ()
@end
@implementation MapBackgroundViewController
@synthesize segmentedControl, mapType, delegate;
- (void)viewDidLoad
{
[super viewDidLoad];
// that´s why I can´t delete the import ???
MapsViewController *myMapsViewController = [[MapsViewController alloc] init];
[self setDelegate:myMapsViewController];
}
- (IBAction)segmentedControllChanged:(id)sender {
if (segmentedControl.selectedSegmentIndex == 0) {
mapType = MKMapTypeStandard;
}else if (segmentedControl.selectedSegmentIndex == 1) {
mapType = MKMapTypeSatellite;
} else if (segmentedControl.selectedSegmentIndex == 2) {
// [self.delegate setMapType:MKMapTypeHybrid];
mapType = MKMapTypeHybrid;
}
//Is anyone listening
if([delegate respondsToSelector:@selector(segmentedControllChangedMapType:)])
{
//send the delegate function with the amount entered by the user
[delegate segmentedControllChangedMapType:mapType];
}
[self dismissModalViewControllerAnimated:YES];
}
MapsViewController.h
#import "MapBackgroundViewController.h"
@class MapBackgroundViewController;
@interface MapsViewController : UIViewController<MKMapViewDelegate,
UISearchBarDelegate, ChangeMapTyp >{ //here i get the error message
@private
IBOutlet MKMapView *map;
}
@property (nonatomic, retain) IBOutlet MKMapView *map;
@end
MapsViewController.m #import "MapBackgroundViewController.h"
@interface MapsViewController ()
@end
@implementation MapsViewController
@synthesize map;
- (void)segmentedControllChangedMapType: (MKMapType) type{
map.mapType = type;
}