1

我已经在 iphone 中应用了温度转换器,我希望它在模拟器中启动时只有数字键盘而不是字母键盘。

#import "farh_celcius_conv_AppDelegate.h"

float i;
float s;
float p;

@implementation farh_celcius_conv_AppDelegate

@synthesize window,display,farhenite,display1;





-(IBAction) convert  {
    s = ('0','1','2');

    if( p == s)
    {

    NSString *str = farhenite. text;

    float n = [str floatValue];


    if (n != 0) {

        k =.5559* (n-32);   
        i = 5*(n -32)/9 +273    ;   

        [display setText:[NSString stringWithFormat:@"%f",k]];
        [display1 setText:[NSString stringWithFormat:@"%f",i]];     
    }   
}
}

- (void)dealloc {
    [window release];
    [super dealloc];
}


@end
4

3 回答 3

4

试试这个,

 yourTextField.keyboardType = UIKeyboardTypePhonePad;

或者

 yourTextField.keyboardType = UIKeyboardTypeNumberPad;

您也可以在 nib 文件中执行此操作。

于 2011-05-12T09:27:32.597 回答
4

您可以为文本字段设置各种类型的键盘。在文本输入特征、键盘下查看检查器。

于 2011-05-12T09:29:07.617 回答
2
[myTextField setKeyboardType:UIKeyboardTypeNumberPad];
于 2011-05-12T09:36:05.027 回答