码迷,mamicode.com
首页 > 其他好文 > 详细

ccui.PageView

时间:2015-11-16 17:51:58      阅读:317      评论:0      收藏:0      [点我收藏+]

标签:



    ---pageView

    local page=ccui.PageView:create()

    for i=1,8 do

---创建layout,内容添加到layout
        local layout=ccui.Layout:create()
        layout:setContentSize(700,700)

        layout:setPosition(0,0)
        local s=i .. ".png"
        local xx= ccui.Button:create(s,s,s,0)
        layout:addChild(xx)
        xx:setPosition(350,700/2)
        page:addPage(layout)---一个layout 为一个 page内容

        xx:setScale(1.5)
    end




    layer:addChild(page)

    page:setContentSize(700,700)
    page:setTouchEnabled(true)
    page:setAnchorPoint(cc.p(0.5,0.5))
    page:setPosition(WIDTH_MAX/2,HEIGHT_MAX/2)
    
    
    --注册事件
    
      page:addEventListener(function(sender,event)
        if event==ccui.PageViewEventType.turning then
            self:setName(page:getCurPageIndex())
        
        end
    
    end)


ccui.PageView

标签:

原文地址:http://my.oschina.net/kkkkkkkkkkkkk/blog/530947

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!