Last active
December 31, 2015 17:29
-
-
Save keicoder/8021030 to your computer and use it in GitHub Desktop.
objective-c : 지연시간 이후 키보드 팝업
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 딜레이 이후 키보드 팝 업 | |
double delayInSeconds = 0.1; | |
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC); | |
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){ | |
[self.noteTextView becomeFirstResponder]; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment