Сначала позвольте мне извиниться за мой плохой английский.Поэтому я пытался сделать эту программу, которая получает значение NSString в одном классе из другого класса.Вот код:
/---------------------/tableViewController.h -----------
#import <UIKit/UIKit.h>
@class paisesDetailViewController;
@interface tableViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource>{
IBOutlet UITableView *paisesTableView;
paisesDetailViewController *PaisesDetailViewController;
//DB
NSString *DBName;
NSString *DBPath;
NSMutableArray *ArrayPais; //means Countrys
NSString *escolha; //means choise
}
@property(nonatomic, retain) paisesDetailViewController *PaisesDetailViewController;
@property(nonatomic, retain) NSMutableArray *ArrayPais;
@property(nonatomic, retain) NSString *escolha;
@end
-----------------------------//tableViewController.m---------------
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger row = [indexPath row];
if(self.PaisesDetailViewController == nil)
{
paisesDetailViewController *apaisesDetail = [[paisesDetailViewController alloc] initWithNibName:@"paisesDetailView" bundle:nil];
self.PaisesDetailViewController = apaisesDetail;
[apaisesDetail release];
}
[tableView deselectRowAtIndexPath:indexPath animated:YES];
escolha = [[NSString alloc] init];
self.escolha = [NSString stringWithFormat:@"%@", [ArrayPais objectAtIndex:(row)]];
paisesDetailViewController *nextview = [[paisesDetailViewController alloc] init];
[self.navigationController pushViewController:nextview animated:YES];
[nextview release];
}
-----------------------------------//paisesDetailViewController.h------------
#import <UIKit/UIKit.h>
#import "tableViewController.h"
@class tableViewController;
@interface paisesDetailViewController : UIViewController {
tableViewController *dados;
}
@property(nonatomic, retain) tableViewController *dados;
@end
//-----------------------paisesDetailViewController.m
#import "paisesDetailViewController.h"
#import "tableViewController.h"
@implementation paisesDetailViewController
@synthesize dados;
-(IBAction) createEvent
{
NSString *help = [[NSString alloc] initWithString: dados.escolha];
}
Проблема в том, что dados.escolha всегда равно нулю, и я просто не могу понять, почему.Спасибо за помощь.