如何只使用数字键盘

时间:2011-05-12 09:22:38

标签: iphone iphone-softkeyboard

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

#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

3 个答案:

答案 0 :(得分:4)

试试这个,

 yourTextField.keyboardType = UIKeyboardTypePhonePad;

 yourTextField.keyboardType = UIKeyboardTypeNumberPad;

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

答案 1 :(得分:4)

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

答案 2 :(得分:2)

[myTextField setKeyboardType:UIKeyboardTypeNumberPad];