NSString

di il
1 risposte

NSString

Stringa1="pippo"
stringa2=stringa1
print stringa2

come si traduce in objective-c?

1 Risposte

  • Re: NSString

    NSString *stringa1 = @"Pippo";
    NSString *stringa2 = stringa1;
    
    Per il print, se intendi nel log puoi usare
    NSLog(@"%@",stringa2);
    Se invece vuoi mostrarlo sullo schermo dell' iphone, dovresti avere una UILabel (che nel codice qui sotto chiamo nomeLabel) a cui vai a settare stringa2 come testo:
    nomeLabel.text = stringa2;
Devi accedere o registrarti per scrivere nel forum
1 risposte