Last active
December 19, 2015 14:59
-
-
Save ykxpb/5972918 to your computer and use it in GitHub Desktop.
CCScrollView使用
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function test_scroll_view() | |
cur_photo = display.newSprite("photo.jpg") | |
scroll_view = CCScrollView:create() | |
scroll_view:setContainer(cur_photo) | |
scroll_view:setViewSize(CCSizeMake(640, 960)) | |
self:addChild(scroll_view) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment