私は2つのボタンを持っています。1 つのボタンが加算され、1 つのボタンが加算されます。問題は、22 などの特定の数字がテキスト領域にあると、電話が一定時間振動することです。これが私のコードです:
私が言おうとしているのは、IF ラベルが「22」を表示し、電話を振動させることです...問題は、これをどのように書くかです..私はまだ学んでいるので、これに関する助けがあれば大歓迎です! これまでの私のコードは次のとおりです。
#import "StartCountViewController.h"
#import "AudioToolbox/AudioServices.h"
@implementation StartCountViewController
int Count=0;
-(void)awakeFromNib {
startCount.text = @"0";
}
- (IBAction)addNumber {
if(Count >= 999) return;
NSString *numValue = [[NSString alloc] initWithFormat:@"%d", Count++];
startCount.text = numValue;
[numValue release];
}
- (IBAction)vibrate {
}
- (IBAction)subtractNumber {
if(Count <= -35) return;
NSString *numValue = [[NSString alloc] initWithFormat:@"%d", Count--];
startCount.text = numValue;
[numValue release];
}
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)dealloc {
[super dealloc];
}
@end