i create 3 uitoggle item.in editor they are all seted "Starting state" to false..and they all are group 1.
and i registed the changed callback function like this...
public void OnIconCheckChanged()
{
Debug.Log("Toggle: " + UIToggle.current.name + " has state of " + UIToggle.current.value);
}
and i want set the first item checked,so i change the first item's value to true in my script,
at beginning, the first item checed, when i click the first checked item, the log shows "item0 has state of false" while not show "item0 has state of true"?? why?