我是 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 回答