По какой-то причине я не могу получить доступ ни к одной из моих переменных после первого оператора IF в следующем коде.Например, если путь индекса равен [0,0], то переменная phoneText выводит номер телефона.Но если его [1,0] или [2,0], я получаю «нулевой» возврат.Почему моя переменная стирается?
Следующая функция в mapviewcontroller.m устанавливает значения.У меня действительно есть ошибка, которая говорит: «Метод экземпляра setDetails не найден».
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control {
//this determines what kind of item was selected
if ([control isKindOfClass:[UIButton class]]) {
NSLog(@"Trying to load VenueIdentifier...");
FinderAnnotation *clicked = view.annotation;
FinderViewController *fvi = [self.storyboard instantiateViewControllerWithIdentifier:@"FinderDetail"];
NSString* latitude = [NSString stringWithFormat:@"%f",clicked.coordinate.latitude];
NSString* longitude = [NSString stringWithFormat:@"%f",clicked.coordinate.longitude];
NSLog(@"lat: %@",latitude);
NSLog(@"lon: %@",longitude);
[fvi setDetails:clicked.title phone:clicked.phone address:clicked.address beersavailable:clicked.beersavailable latitude:latitude longitude:longitude];
[self.navigationController pushViewController:fvi animated:YES];
}
}
Затем мой finderdetail.h создает эти переменные:
@interface FinderDetail : UITableViewController{
UITableViewCell *phone;
UITableViewCell *address;
UITableViewCell *directions;
UILabel *venueLabel;
NSString *phoneText;
NSString *addressText;
NSString *venueText;
NSString *beersavailable;
NSString *latitudeText;
NSString *longitudeText;
}
@property (nonatomic, retain) IBOutlet UITableViewCell *phone;
@property (nonatomic, retain) IBOutlet UITableViewCell *address;
@property (nonatomic, retain) IBOutlet UITableViewCell *directions;
@property (nonatomic, retain) IBOutlet UILabel *venueLabel;
@property (nonatomic, retain) NSString *phoneText;
@property (nonatomic, retain) NSString *addressText;
@property (nonatomic, retain) NSString *venueText;
@property (nonatomic, retain) NSString *beersavailble;
@property (nonatomic, retain) NSString *latitudeText;
@property (nonatomic, retain) NSString *longitudeText;
@end
Наконец, finderdetail.m захватываетэти значения, присваивает их переменным и выплевывает их в таблицу:
@implementation FinderDetail
@synthesize venueLabel, phone, address, directions;
@synthesize phoneText, addressText, venueText, beersavailble, latitudeText, longitudeText;
NSString *notlisted;
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
-(void)setDetails:(NSString *)v phone:(NSString *)p address:(NSString *)a beersavailable:(NSString *)ba latitude:(NSString *)lat longitude:(NSString *)lon
{
NSLog(@"venue: %@",v);
NSLog(@"phone: %@",p);
NSLog(@"address: %@",a);
NSLog(@"beersavailable: %@",ba);
NSLog(@"%@",lat);
NSLog(@"%@",lon);
latitudeText = lat;
longitudeText = lon;
phoneText = p;
addressText = a;
venueText = v;
beersavailble = ba;
NSLog(@"%@", latitudeText);
NSLog(@"%@", longitudeText);
notlisted = @"Not Listed";
}
- (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(@"Latitude: %@", latitudeText);
NSLog(@"Longitude: %@", longitudeText);
phone.detailTextLabel.text = phoneText;
address.detailTextLabel.text = addressText;
self.venueLabel.text = venueText;
if(phoneText == nil){
phone.detailTextLabel.text = notlisted;
}
if(addressText == nil){
address.detailTextLabel.text = notlisted;
}
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
//#warning Incomplete method implementation.
// Return the number of rows in the section.
if(section ==0)
return 1;
else
if(section ==1)
return 1;
else
if(section ==2)
return 1;
else
return 0;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"%@",indexPath);
if((indexPath.section==0) && (indexPath.row ==0))
{
NSLog(@"%@",phoneText);
}
if((indexPath.section==1) && (indexPath.row ==0))
{
NSLog(@"%@",addressText);
}
if((indexPath.section==2) && (indexPath.row ==0))
{
NSLog(@"%@",latitudeText);
NSLog(@"%@",longitudeText);
}
}
Исходный phoneText будет отображаться в NSLog, но addressText и latitudeText и longitudeText возвращают ноль.Я могу поместить phoneText в один из тех операторов if ниже, и он тоже возвращает ноль.Спасибо !!!