Просто предисловие, я новичок в разработке для iOS.Некоторое время я оглядывался по сторонам, пытаясь найти ответ, будь то здесь или через Google.
Мое приложение загружается в представление карты с аннотациями.Если пользователь нажимает на одну из аннотаций, отображается вид выноски с дополнительной кнопкой.Проблема, с которой я столкнулся, заключается в том, что метод вызывается, когда нажимается дополнительная кнопка.Я хочу отобразить подробный вид для конкретной аннотации, но когда я нажимаю вспомогательную кнопку, приложение вылетает с SIGABRT.
// method that provides the view for when the callout accessory button is tapped
- (void)mapView:(MKMapView *)mapView
annotationView:(MKAnnotationView *)view
calloutAccessoryControlTapped:(UIControl *)control
{
// grabs the annotation's title from the annotation view
NSString *viewTitle = view.annotation.title;
// grabs corresponding POI object for map annotation
PointOfInterest *object = [[PointOfInterest alloc] init];
object = [dictionary objectForKey:(NSString *)viewTitle];
// assigns title and subtitle ivars to variables to be passed into detailviewcontroller init
NSString *title = object._title;
NSString *subtitle = object._subtitle;
UIImage *picture = object._picture;
NSString *description = object._description;
// releases POI object after all the information has been taken from it
[object release];
// inits detailVC
DetailVC *detailVC = [[DetailVC alloc] initWithNibName:@"DetailVC"
bundle:[NSBundle mainBundle]];
// sets the nsstring ivars in the DVC which correspond to the POI information
detailVC.thetitleText = title;
detailVC.thesubtitleText = subtitle;
detailVC.thepictureImage = picture;
detailVC.thedescriptionText = description;
// sets the "back" button on the navigation controller to say "Back to Map"
UIBarButtonItem *newBackButton = [[UIBarButtonItem alloc] initWithTitle:@"Back to Map"
style:UIBarButtonItemStyleBordered
target:nil
action: nil];
[[self navigationItem] setBackBarButtonItem: newBackButton];
[newBackButton release];
// pushes navcontroller onto the stack and releases the detail viewcontroller
[self.navigationController pushViewController:detailVC animated:YES];
[detailVC release];
}
Я еще не добавил изображение и описание, потому что я просто пытаюсьчтобы получить представление для отображения с заголовком и субтитрами.
Вот код класса DetailViewController Заголовок:
@interface DetailViewController : UIViewController {
IBOutlet UIScrollView *scrollview;
IBOutlet UILabel *thetitle;
NSString *thetitleText;
IBOutlet UILabel *thesubtitle;
IBOutlet UIImage *thepicture;
IBOutlet UITextView *thedescription;
}
@property (nonatomic, retain) UIScrollView *scrollview;
@property (nonatomic, retain) UILabel *thetitle;
@property (nonatomic, retain) NSString *thetitleText;
@property (nonatomic, retain) UILabel *thesubtitle;
@property (nonatomic, retain) UIImage *thepicture;
@property (nonatomic, retain) UITextView *thedescription;
// method that creates the custom detail view with the corresponding information from
// the point of interest objects
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil title:(NSString*)title subtitle:(NSString *)subtitle picture:(UIImage *)picture description:(NSString *)description;
@end
Реализация:
@implementation DetailViewController
@synthesize scrollview, thetitle, thesubtitle, thepicture, thedescription, thetitleText;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil title:(NSString *)title subtitle:(NSString *)subtitle picture:(UIImage *)picture description:(NSString *)description;
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
NSLog(@"view initialized");
}
return self;
}
- (void)dealloc
{
[scrollview release];
[thetitle release];
[thesubtitle release];
[thepicture release];
[thedescription release];
[thetitleText release];
[super dealloc];
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
NSLog(@"view did load");
[thetitle setText:self.thetitleText];
NSLog(@"thetitle text set");
// Do any additional setup after loading the view from its nib.
// [thetitle setText:title];
// NSLog(@"set title");
// [thesubtitle setText:subtitle];
// NSLog(@"set subtitle");
// thepicture = picture;
// [thedescription setText:description];
// NSLog(@"set description");
}
Вот выход SIGABRT:
2011-07-12 19: 05: 06.678 mkeBOAT [1687: ef03] Принадлежность для выносного вызова нажата
2011-07-1219: 05: 06.679 mkeBOAT [1687: ef03] Башня банка США
2011-07-12 19: 05: 06.680 mkeBOAT [1687: ef03] (ноль)
2011-07-1219: 05: 06.680 mkeBOAT [1687: ef03] (null), (null)
2011-07-12 19: 05: 06.680 mkeBOAT [1687: ef03] представление инициализировано
2011-07-12 19: 05: 06.711 mkeBOAT [1687: ef03] * Завершение работы приложения из-за необработанного исключения
'NSUnknownKeyException', причина: '[setValue: forUndefinedKey:]: этот классне соответствует кодировке значения ключа для описания ключа. '
Я не думаю, что словарь работает правильно, потому что он выводит ноль для значений, которые на самом деле должны что-то иметь.
Спасибо за любую помощь!