doSomeWorkWithProgress {
self.canceled = NO;
// This just increases the progress indicator in a loop.
float progress = 0.0f;
self.downloadState = DownloadStateStarted;
while (progress < 1.0f) {
if (self.canceled) break;
progress += 0.01f;
dispatch_async(dispatch_get_main_queue(), ^{
// Instead we could have also passed a reference to the HUD
// to the HUD to myProgressTask as a method parameter.
[MBProgressHUD HUDForView:self.navigationController.view].progress = progress;
});
usleep(50000);
}
self.downloadState = DownloadStateCompleted;
}
打开了这个键盘:
而<input type="text">
提出了这个:
有没有办法保持输入类型文本并调用第二个键盘?也许有一个模式属性?
输入类型=“数字”的问题是用户需要输入分数,<input type="number">
在空格和正斜杠方面遇到问题,例如$("#input_id").val();
返回3 5/6
和{ {1}}返回3
。
如果可以绕过这个,我也可以使用它。
答案 0 :(得分:0)
<input type="text">
将始终调用主键盘。
你能做的是:
[0-9][.][0-9]{1-2}
对于一个或两个小数位返回true。