Ho risolto! basta fare come nel codice iniziale:
.h
@interface ViewController : UIViewController{
IBOutlet UILabel *Label;
IBOutlet UITextField *TextField;
NSMutableDictionary *data;
}
-(IBAction)Button:(id)sender;
.m
- (void)viewDidLoad
{
[super viewDidLoad];
data=[[NSMutableDictionary alloc] init];
[data setValue:@"2" forKey:@"ciao"];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}
-(IBAction)Button:(id)sender;{
NSString *value = [data valueForKey:TextField.text];
if (value && value.length > 0)
{
Label.text = value;
}
per ottenere l'intvalue tanto ricercata ho fatto così:
.h
int variabile;
.m, aggiunto all'-(IBAction)Button:(id)sender
variabile=([Label.text intvalue])
ed ecco che i ritrovo una variabile con il valore sommabile!
grazie mille dell'aiuto!