Hi,
I'm using NGUI 3.5.3 (updated today

I placed scroll view on my panel and referenced by my simple script.
and I added UICenterOnChild component on scroll view.
I wrote...
void Start() {
// .... scroll view item creation...
centerOnChild.CenterOn(center_item);
}
like this.
but, scroll view couldn't actually move item center.
I checked game object, and i found that spring board is disabled.

After some debugging, I found the reason...
when UIScrollView's first update, it disables spring board itself... This is strange

actually, I solved this problem with moving instantiated all items directly (transform.localPosition += offset for each)..
but I hope re-enabling spring is called after first update in next version.
Thank you!