浏览代码

passcode lock screen: minor UX tweak

Felix Paul Kühne 10 年之前
父节点
当前提交
3c87d60f1f
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      PAPasscode/PAPasscodeViewController.m

+ 5 - 0
PAPasscode/PAPasscodeViewController.m

@@ -225,6 +225,11 @@
     [passcodeTextField becomeFirstResponder];
 }
 
+- (void)viewWillDisappear:(BOOL)animated {
+    [super viewWillDisappear:animated];
+    [passcodeTextField resignFirstResponder];
+}
+
 - (NSUInteger)supportedInterfaceOrientations {
     return UIInterfaceOrientationMaskPortrait|UIInterfaceOrientationMaskPortraitUpsideDown;
 }