Exemplo n.º 1
0
        public new bool InitWithViewSize(CCSize size, CCNode container)
        {
            if (base.InitWithViewSize(size, container))
            {
                m_pCellsUsed         = new CCArrayForObjectSorting();
                m_pCellsFreed        = new CCArrayForObjectSorting();
                m_pIndices           = new List <int>();
                m_pTableViewDelegate = null;
                m_eVordering         = CCTableViewVerticalFillOrder.FillBottomUp;
                Direction            = CCScrollViewDirection.Vertical;


                base.Delegate = this;
                return(true);
            }
            return(false);
        }
Exemplo n.º 2
0
        public new bool InitWithViewSize(CCSize size, CCNode container)
        {
            if (base.InitWithViewSize(size, container))
            {
                m_pCellsUsed = new CCArrayForObjectSorting();
                m_pCellsFreed = new CCArrayForObjectSorting();
                m_pIndices = new List<int>();
                m_pTableViewDelegate = null;
                m_eVordering = CCTableViewVerticalFillOrder.FillBottomUp;
                Direction = CCScrollViewDirection.Vertical;

                base.Delegate = this;
                return true;
            }
            return false;
        }