For fix it new NGUI. In UICamera you need to change line:
if (currentScheme == ControlScheme.Touch) return;
On this, and s-pen start working as expected:
if (currentScheme == ControlScheme.Touch && Input.touchCount > 0) return;
You can test it with OTG cable and mouse connected to your tablet/phone.