예제 #1
0
    void InitView()
    {
        long      userID = userPackage.GetSelectionUserID();
        NUserInfo info   = userPackage.GetUserInfo(userID);

        if (info == null)
        {
            return;
        }
        nameLabel.text         = info.name;
        contributionLabel.text = info.contribution.ToString();
        idLabel.text           = info.uID.ToString();
    }