2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module TableView
|
2014-03-26 14:03:04 +08:00
|
|
|
-- @extend ScrollView,ScrollViewDelegate
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] updateCellAtIndex
|
|
|
|
-- @param self
|
|
|
|
-- @param #long long
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] setVerticalFillOrder
|
|
|
|
-- @param self
|
2014-07-17 22:20:04 +08:00
|
|
|
-- @param #int verticalfillorder
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] scrollViewDidZoom
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.ScrollView scrollview
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] _updateContentSize
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] getVerticalFillOrder
|
|
|
|
-- @param self
|
2014-07-17 22:20:04 +08:00
|
|
|
-- @return int#int ret (return value: int)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] removeCellAtIndex
|
|
|
|
-- @param self
|
|
|
|
-- @param #long long
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] initWithViewSize
|
|
|
|
-- @param self
|
|
|
|
-- @param #size_table size
|
|
|
|
-- @param #cc.Node node
|
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] scrollViewDidScroll
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.ScrollView scrollview
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] reloadData
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] insertCellAtIndex
|
|
|
|
-- @param self
|
|
|
|
-- @param #long long
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] cellAtIndex
|
|
|
|
-- @param self
|
|
|
|
-- @param #long long
|
|
|
|
-- @return TableViewCell#TableViewCell ret (return value: cc.TableViewCell)
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] dequeueCell
|
|
|
|
-- @param self
|
|
|
|
-- @return TableViewCell#TableViewCell ret (return value: cc.TableViewCell)
|
|
|
|
|
2014-03-18 15:55:30 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] onTouchMoved
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Touch touch
|
|
|
|
-- @param #cc.Event event
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] onTouchEnded
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Touch touch
|
|
|
|
-- @param #cc.Event event
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] onTouchCancelled
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Touch touch
|
|
|
|
-- @param #cc.Event event
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] onTouchBegan
|
|
|
|
-- @param self
|
|
|
|
-- @param #cc.Touch touch
|
|
|
|
-- @param #cc.Event event
|
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#TableView] TableView
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
return nil
|