私はxcodeが初めてです。テキストフィールドフォームがあります。このフォームでは、数字のみを入力できます。このテキスト フィールドからラベルに情報を取得するにはどうすればよいですか?
質問する
90 次
2 に答える
0
@implementation WorktimerViewController{
NSTimer *timer;
int MainInt;
int zarabotal;
int stavka; }
@synthesize price;
@synthesize donebutton;
@synthesize lave;
- (void)updateLabels
{
self.lave.text = [NSString stringWithFormat:@"%d", zarabotal];
}
- (void) countup
{
MainInt += 1;
_second.text = [NSString stringWithFormat:@"%i", MainInt];
}
- (void)StartTimer{
MainInt = 1;
timer = [ NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(countup) userInfo:nil repeats:YES];
zarabotal = stavka / MainInt;
[self updateLabels];
}
于 2013-02-09T08:18:55.443 に答える
0
iOS向けに開発していると思いますか?[ラベル setText:textField.text]; するべきです。
于 2013-02-08T22:53:30.913 に答える