私はObjective-CとXcodeが初めてです。
最初のプログラム「Hello Word」を実行しましたが、「hello Word」メッセージを別のメッセージに変更したいと考えています。これが私のコードの例です:
.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController {
IBOutlet UILabel * label;
IBOutlet UIButton * boton;
}
-(IBAction)click:(id)sender;
@end
.m
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
-(IBAction)click:(id)sender{
label.text = @"hello Word" ;
label.text = @"here is the second string";
// i would like when i touch again the button to change to this string
}