サンプルタップカウントアプリを作成しました。しかし、ラップの数え方がわかりません。例: ヒット カウント 100 の場合、ラップは 1 です。ヒット カウント 200 の場合、ラップは 2 です。以下のコードを使用しました。ありがとう。私はxcodeの初心者です。
次のコードはViewController.mです
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
-(IBAction)plus {
counter=counter +1;
count.text = [NSString stringWithFormat:@"%i", counter];
}
-(IBAction)minus {
counter=counter -1;
count.text = [NSString stringWithFormat:@"%i", counter];
}
-(IBAction)zero {
counter=0;
count.text = [NSString stringWithFormat:@"%i", counter];
}
- (void)viewDidLoad
{
counter=0;
count.text=@"0";
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
次のコードは ViewController.h #import です
int counter;
@interface ViewController : UIViewController {
IBOutlet UILabel *count;
IBOutlet UILabel *lap;
}
-(IBAction)plus;
-(IBAction)minus;
-(IBAction)zero;
@end