Craig Grummitt – Before I forget

Discoveries in Swift and iOS development.

Tag: keyboard

  • Getting the keyboard height

    Getting the keyboard height

    Some time ago I answered a question in StackOverflow comparing the keyboard height on the iPhone X and the iPhone 8: I got these heights by: 1. Adding an observer of the UIResponder.keyboardWillShowNotification notification:…

    Keep reading

  • Xcode Keyboard Shortcut for CamelCase!

    Sometimes it can be a pain moving around code in Xcode especially with long method and property names. Then I discovered an Xcode keyboard shortcut that rocks – move back and forward through camel case…

    Keep reading

  • Keyboards, text views and first responders

    If you’re moving your app’s interface from under the keyboard when it appears, you’re probably doing the following: 1. Get a reference to the relevant text field in the UITextFieldDelegate‘s textFieldDidBeginEditing method.…

    Keep reading