我确定这里的某个地方是解决方案,但我已经搜索了很长时间,但没有找到任何东西
所以我的设置:.h
IBOutlet UITextField *valueOne;
IBOutlet UITextField *valueTwo;
IBOutlet UILabel *total;
- (IBAction)Lange;
@property (nonatomic, retain) UITextField *valueOne;
@property (nonatomic, retain) UITextField *valueTwo;
.m
- (IBAction)Lange{
float f = arc4random_uniform(3) ;
float x = ([valueOne.text floatValue]-1.5)/1.5;
float c = (5+[valueTwo.text floatValue])/2;
float o = (x+c)/2+f;
total.text = [[NSString alloc]initWithFormat:@"%.fcm", o];
}
我的问题:我正在搜索代码/指南,向我展示如何使用pickerview,我的意思是: 1. 用户在文本字段中输入 ValueOne。2. 用户选择 4 个选项之一,即 ValueTwo(在 .m-> float c valueTwo.text 中应填写我要设置的 4 个变量之一)。那么我怎样才能得到带有预设变量的pickerview,而用户只需要选择它呢?
如果有任何不清楚的地方,请随时发表评论。
编辑:我希望隐藏键盘并显示pickerview,并且仅在单击文本字段 valueTwo 时才会显示pickerview。