示例#1
0
        private void UserInputCallBack(IAsyncResult ia)
        {
            String res = Guide.EndShowKeyboardInput(ia);

            if (null != m_Image)
            {
                CCLabelTTF text         = m_Image.parent.children [0].children [0] as CCLabelTTF;
                String     languagename = text.getString();
                if (String.Equals("中文", languagename))
                {
                    m_newChinese = res;
                }
                else
                {
                    m_newEnglish = res;
                }
            }
        }