Hi there,
We've used NGUI for an app we've just released. When you go to another screen we switch to another panel by a script that basically says:
NGUITools.SetActive(showUI, true);
NGUITools.SetActive(hideUI, false);
Now, during this transition you see an annoying flash, depending on the speed of the mobile device you're working with. The switching between panels is necessary because many of the UI screens use draggable panels. I think the way to go would be to use Tween scripts to let the screens ease in and out. But I haven't found any examples or explanation on this.
I hope someone can help with this problem!
Robin