Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 516 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 516 Bytes

#Unity iOS Keyboard Patch

##Description

This patch adjusts position and height of input field above keyboard when status bar is shown in iOS 7 or later.

This patch is compatible with Unity versions below:

  • Unity 5.4.0f10
  • Unity 5.3.4f1
  • Unity 5.2.4f1

##Usage

Import iOSKeyboardPatch.unitypackage into your project. To apply this patch, call iOSKeyboardPatch.Apply method at the beginning of the scene. (at Start method etc.)

void Start() {
	iOSKeyboardPatch.Apply();
}