私は Objective-C を初めて使用し、少しずつ学習しています。それについて質問があります。
たとえば、数値の増減に関する iPhone アプリを作成しましたが、デフォルトの数値は 0 に設定されています。上、下、または再起動ボタンを押すと、さまざまなコマンド オプションが表示されます。たとえば、ifステートメントを実行したいと思います。ラベル番号 (0) が 5 (5) の場合、ポップアップ ボックス、または「番号 5 に達しました」というテキストが表示されます。これは、将来のアプリやゲームでこれを学習して実装できるようにするためだけのものです。
ViewController.h
#import <UIKit/UIKit.h>
int Number;
@interface ViewController : UIViewController {
IBOutlet UILabel *Count;
}
- (IBAction)Up:(id)sender;
- (IBAction)Down:(id)sender;
- (IBAction)Restart:(id)sender;
@end
ViewController.m
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (IBAction)Up:(id)sender {
Number = Number + 1;
Count.text = [NSString stringWithFormat:@"%i", Number];
}
- (IBAction)Down:(id)sender {
Number = Number - 1;
Count.text = [NSString stringWithFormat:@"%i", Number];
}
- (IBAction)Restart:(id)sender {
Number = 0;
Count.text = [NSString stringWithFormat:@"%i", Number];
}
- (void)viewDidLoad {
Number = 0;
Count.text = [NSString stringWithFormat:@"%i", Number];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}