实例介绍
cocos2d-x ScrollView简单使用
【实例截图】
【核心代码】
4744300845405102057.rar
└── ScrollViewDemo
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── ios
│ ├── AppController.h
│ ├── AppController.mm
│ ├── main.m
│ ├── RootViewController.h
│ └── RootViewController.mm
├── libs
│ ├── cocos2dx
│ │ ├── actions
│ │ │ ├── CCActionCamera.cpp
│ │ │ ├── CCActionCamera.h
│ │ │ ├── CCActionCatmullRom.cpp
│ │ │ ├── CCActionCatmullRom.h
│ │ │ ├── CCAction.cpp
│ │ │ ├── CCActionEase.cpp
│ │ │ ├── CCActionEase.h
│ │ │ ├── CCActionGrid3D.cpp
│ │ │ ├── CCActionGrid3D.h
│ │ │ ├── CCActionGrid.cpp
│ │ │ ├── CCActionGrid.h
│ │ │ ├── CCAction.h
│ │ │ ├── CCActionInstant.cpp
│ │ │ ├── CCActionInstant.h
│ │ │ ├── CCActionInterval.cpp
│ │ │ ├── CCActionInterval.h
│ │ │ ├── CCActionManager.cpp
│ │ │ ├── CCActionManager.h
│ │ │ ├── CCActionPageTurn3D.cpp
│ │ │ ├── CCActionPageTurn3D.h
│ │ │ ├── CCActionProgressTimer.cpp
│ │ │ ├── CCActionProgressTimer.h
│ │ │ ├── CCActionTiledGrid.cpp
│ │ │ ├── CCActionTiledGrid.h
│ │ │ ├── CCActionTween.cpp
│ │ │ └── CCActionTween.h
│ │ ├── base_nodes
│ │ │ ├── CCAtlasNode.cpp
│ │ │ ├── CCAtlasNode.h
│ │ │ ├── CCNode.cpp
│ │ │ └── CCNode.h
│ │ ├── CCCamera.cpp
│ │ ├── CCCamera.h
│ │ ├── CCConfiguration.cpp
│ │ ├── CCConfiguration.h
│ │ ├── CCDirector.cpp
│ │ ├── CCDirector.h
│ │ ├── CCDrawingPrimitives.cpp
│ │ ├── CCDrawingPrimitives.h
│ │ ├── CCScheduler.cpp
│ │ ├── CCScheduler.h
│ │ ├── cocoa
│ │ │ ├── CCAffineTransform.cpp
│ │ │ ├── CCAffineTransform.h
│ │ │ ├── CCArray.cpp
│ │ │ ├── CCArray.h
│ │ │ ├── CCAutoreleasePool.cpp
│ │ │ ├── CCAutoreleasePool.h
│ │ │ ├── CCDictionary.cpp
│ │ │ ├── CCDictionary.h
│ │ │ ├── CCGeometry.cpp
│ │ │ ├── CCGeometry.h
│ │ │ ├── CCInteger.h
│ │ │ ├── CCNS.cpp
│ │ │ ├── CCNS.h
│ │ │ ├── CCObject.cpp
│ │ │ ├── CCObject.h
│ │ │ ├── CCSet.cpp
│ │ │ ├── CCSet.h
│ │ │ ├── CCString.cpp
│ │ │ ├── CCString.h
│ │ │ ├── CCZone.cpp
│ │ │ └── CCZone.h
│ │ ├── cocos2d.cpp
│ │ ├── effects
│ │ │ ├── CCGrabber.cpp
│ │ │ ├── CCGrabber.h
│ │ │ ├── CCGrid.cpp
│ │ │ └── CCGrid.h
│ │ ├── extensions
│ │ │ ├── CCBReader
│ │ │ │ ├── CCBFileLoader.cpp
│ │ │ │ ├── CCBFileLoader.h
│ │ │ │ ├── CCBMemberVariableAssigner.h
│ │ │ │ ├── CCBReader.cpp
│ │ │ │ ├── CCBReader.h
│ │ │ │ ├── CCBSelectorResolver.h
│ │ │ │ ├── CCControlButtonLoader.cpp
│ │ │ │ ├── CCControlButtonLoader.h
│ │ │ │ ├── CCControlLoader.cpp
│ │ │ │ ├── CCControlLoader.h
│ │ │ │ ├── CCLabelBMFontLoader.cpp
│ │ │ │ ├── CCLabelBMFontLoader.h
│ │ │ │ ├── CCLabelTTFLoader.cpp
│ │ │ │ ├── CCLabelTTFLoader.h
│ │ │ │ ├── CCLayerColorLoader.cpp
│ │ │ │ ├── CCLayerColorLoader.h
│ │ │ │ ├── CCLayerGradientLoader.cpp
│ │ │ │ ├── CCLayerGradientLoader.h
│ │ │ │ ├── CCLayerLoader.cpp
│ │ │ │ ├── CCLayerLoader.h
│ │ │ │ ├── CCMenuItemImageLoader.cpp
│ │ │ │ ├── CCMenuItemImageLoader.h
│ │ │ │ ├── CCMenuItemLoader.cpp
│ │ │ │ ├── CCMenuItemLoader.h
│ │ │ │ ├── CCMenuLoader.h
│ │ │ │ ├── CCNodeLoader.cpp
│ │ │ │ ├── CCNodeLoader.h
│ │ │ │ ├── CCNodeLoaderLibrary.cpp
│ │ │ │ ├── CCNodeLoaderLibrary.h
│ │ │ │ ├── CCNodeLoaderListener.h
│ │ │ │ ├── CCParticleSystemQuadLoader.cpp
│ │ │ │ ├── CCParticleSystemQuadLoader.h
│ │ │ │ ├── CCScale9SpriteLoader.cpp
│ │ │ │ ├── CCScale9SpriteLoader.h
│ │ │ │ ├── CCScrollViewLoader.cpp
│ │ │ │ ├── CCScrollViewLoader.h
│ │ │ │ ├── CCSpriteLoader.cpp
│ │ │ │ └── CCSpriteLoader.h
│ │ │ ├── CCControlExtension
│ │ │ │ ├── CCControlButton.cpp
│ │ │ │ ├── CCControlButton.h
│ │ │ │ ├── CCControlColourPicker.cpp
│ │ │ │ ├── CCControlColourPicker.h
│ │ │ │ ├── CCControl.cpp
│ │ │ │ ├── CCControlExtensions.h
│ │ │ │ ├── CCControl.h
│ │ │ │ ├── CCControlHuePicker.cpp
│ │ │ │ ├── CCControlHuePicker.h
│ │ │ │ ├── CCControlSaturationBrightnessPicker.cpp
│ │ │ │ ├── CCControlSaturationBrightnessPicker.h
│ │ │ │ ├── CCControlSlider.cpp
│ │ │ │ ├── CCControlSlider.h
│ │ │ │ ├── CCControlSwitch.cpp
│ │ │ │ ├── CCControlSwitch.h
│ │ │ │ ├── CCControlUtils.cpp
│ │ │ │ ├── CCControlUtils.h
│ │ │ │ ├── CCInvocation.cpp
│ │ │ │ ├── CCInvocation.h
│ │ │ │ ├── CCMenuPassive.cpp
│ │ │ │ ├── CCMenuPassive.h
│ │ │ │ ├── CCScale9Sprite.cpp
│ │ │ │ ├── CCScale9Sprite.h
│ │ │ │ ├── CCSpacer.cpp
│ │ │ │ └── CCSpacer.h
│ │ │ ├── CCListView
│ │ │ │ ├── CCControlDefine.h
│ │ │ │ ├── CCListViewCell.cpp
│ │ │ │ ├── CCListViewCell.h
│ │ │ │ ├── CCListView.cpp
│ │ │ │ └── CCListView.h
│ │ │ ├── CCNotificationCenter
│ │ │ │ ├── CCNotificationCenter.cpp
│ │ │ │ └── CCNotificationCenter.h
│ │ │ ├── CCScrollView
│ │ │ │ ├── CCScrollView.cpp
│ │ │ │ └── CCScrollView.h
│ │ │ └── CCTextureWatcher
│ │ │ ├── CCTextureWatcher.cpp
│ │ │ └── CCTextureWatcher.h
│ │ ├── include
│ │ │ ├── ccConfig.h
│ │ │ ├── CCEventType.h
│ │ │ ├── ccMacros.h
│ │ │ ├── CCProtocols.h
│ │ │ ├── ccTypes.h
│ │ │ ├── cocos2dExt.h
│ │ │ └── cocos2d.h
│ │ ├── kazmath
│ │ │ ├── include
│ │ │ │ └── kazmath
│ │ │ │ ├── aabb.h
│ │ │ │ ├── GL
│ │ │ │ │ ├── mat4stack.h
│ │ │ │ │ └── matrix.h
│ │ │ │ ├── kazmath.h
│ │ │ │ ├── mat3.h
│ │ │ │ ├── mat4.h
│ │ │ │ ├── neon_matrix_impl.h
│ │ │ │ ├── plane.h
│ │ │ │ ├── quaternion.h
│ │ │ │ ├── ray2.h
│ │ │ │ ├── utility.h
│ │ │ │ ├── vec2.h
│ │ │ │ ├── vec3.h
│ │ │ │ └── vec4.h
│ │ │ └── src
│ │ │ ├── aabb.c
│ │ │ ├── ChangeLog
│ │ │ ├── CMakeLists.txt
│ │ │ ├── GL
│ │ │ │ ├── mat4stack.c
│ │ │ │ └── matrix.c
│ │ │ ├── mat3.c
│ │ │ ├── mat4.c
│ │ │ ├── neon_matrix_impl.c
│ │ │ ├── plane.c
│ │ │ ├── quaternion.c
│ │ │ ├── ray2.c
│ │ │ ├── utility.c
│ │ │ ├── vec2.c
│ │ │ ├── vec3.c
│ │ │ └── vec4.c
│ │ ├── keypad_dispatcher
│ │ │ ├── CCKeypadDelegate.cpp
│ │ │ ├── CCKeypadDelegate.h
│ │ │ ├── CCKeypadDispatcher.cpp
│ │ │ └── CCKeypadDispatcher.h
│ │ ├── label_nodes
│ │ │ ├── CCLabelAtlas.cpp
│ │ │ ├── CCLabelAtlas.h
│ │ │ ├── CCLabelBMFont.cpp
│ │ │ ├── CCLabelBMFont.h
│ │ │ ├── CCLabelTTF.cpp
│ │ │ └── CCLabelTTF.h
│ │ ├── layers_scenes_transitions_nodes
│ │ │ ├── CCLayer.cpp
│ │ │ ├── CCLayer.h
│ │ │ ├── CCScene.cpp
│ │ │ ├── CCScene.h
│ │ │ ├── CCTransition.cpp
│ │ │ ├── CCTransition.h
│ │ │ ├── CCTransitionPageTurn.cpp
│ │ │ ├── CCTransitionPageTurn.h
│ │ │ ├── CCTransitionProgress.cpp
│ │ │ └── CCTransitionProgress.h
│ │ ├── menu_nodes
│ │ │ ├── CCMenu.cpp
│ │ │ ├── CCMenu.h
│ │ │ ├── CCMenuItem.cpp
│ │ │ └── CCMenuItem.h
│ │ ├── misc_nodes
│ │ │ ├── CCMotionStreak.cpp
│ │ │ ├── CCMotionStreak.h
│ │ │ ├── CCProgressTimer.cpp
│ │ │ ├── CCProgressTimer.h
│ │ │ ├── CCRenderTexture.cpp
│ │ │ └── CCRenderTexture.h
│ │ ├── particle_nodes
│ │ │ ├── CCParticleBatchNode.cpp
│ │ │ ├── CCParticleBatchNode.h
│ │ │ ├── CCParticleExamples.cpp
│ │ │ ├── CCParticleExamples.h
│ │ │ ├── CCParticleSystem.cpp
│ │ │ ├── CCParticleSystem.h
│ │ │ ├── CCParticleSystemQuad.cpp
│ │ │ └── CCParticleSystemQuad.h
│ │ ├── platform
│ │ │ ├── CCAccelerometerDelegate.h
│ │ │ ├── CCApplicationProtocol.h
│ │ │ ├── CCCommon.h
│ │ │ ├── CCEGLViewProtocol.cpp
│ │ │ ├── CCEGLViewProtocol.h
│ │ │ ├── CCFileUtils.h
│ │ │ ├── CCImage.h
│ │ │ ├── CCPlatformConfig.h
│ │ │ ├── CCPlatformMacros.h
│ │ │ ├── CCSAXParser.cpp
│ │ │ ├── CCSAXParser.h
│ │ │ ├── CCThread.h
│ │ │ ├── ios
│ │ │ │ ├── AccelerometerDelegateWrapper.h
│ │ │ │ ├── AccelerometerDelegateWrapper.mm
│ │ │ │ ├── CCAccelerometer.h
│ │ │ │ ├── CCAccelerometer.mm
│ │ │ │ ├── CCApplication.h
│ │ │ │ ├── CCApplication.mm
│ │ │ │ ├── CCCommon.mm
│ │ │ │ ├── CCDirectorCaller.h
│ │ │ │ ├── CCDirectorCaller.mm
│ │ │ │ ├── CCEGLView.h
│ │ │ │ ├── CCEGLView.mm
│ │ │ │ ├── CCES2Renderer.h
│ │ │ │ ├── CCES2Renderer.m
│ │ │ │ ├── CCESRenderer.h
│ │ │ │ ├── CCFileUtils.mm
│ │ │ │ ├── CCGL.h
│ │ │ │ ├── CCImage.mm
│ │ │ │ ├── CCLock.cpp
│ │ │ │ ├── CCLock.h
│ │ │ │ ├── CCPlatformDefine.h
│ │ │ │ ├── CCStdC.h
│ │ │ │ ├── CCThread.mm
│ │ │ │ ├── EAGLView.h
│ │ │ │ ├── EAGLView.mm
│ │ │ │ ├── FontLabel
│ │ │ │ │ ├── FontLabel.h
│ │ │ │ │ ├── FontLabel.m
│ │ │ │ │ ├── FontLabelStringDrawing.h
│ │ │ │ │ ├── FontLabelStringDrawing.m
│ │ │ │ │ ├── FontManager.h
│ │ │ │ │ ├── FontManager.m
│ │ │ │ │ ├── ZAttributedString.h
│ │ │ │ │ ├── ZAttributedString.m
│ │ │ │ │ ├── ZAttributedStringPrivate.h
│ │ │ │ │ ├── ZFont.h
│ │ │ │ │ └── ZFont.m
│ │ │ │ ├── OpenGL_Internal.h
│ │ │ │ └── Simulation
│ │ │ │ ├── AccelerometerSimulation.h
│ │ │ │ └── AccelerometerSimulation.m
│ │ │ ├── platform.cpp
│ │ │ └── platform.h
│ │ ├── script_support
│ │ │ ├── CCScriptSupport.cpp
│ │ │ └── CCScriptSupport.h
│ │ ├── shaders
│ │ │ ├── CCGLProgram.cpp
│ │ │ ├── CCGLProgram.h
│ │ │ ├── ccGLStateCache.cpp
│ │ │ ├── ccGLStateCache.h
│ │ │ ├── CCShaderCache.cpp
│ │ │ ├── CCShaderCache.h
│ │ │ ├── ccShaderEx_SwitchMask_frag.h
│ │ │ ├── ccShader_PositionColor_frag.h
│ │ │ ├── ccShader_PositionColor_vert.h
│ │ │ ├── ccShader_PositionTextureA8Color_frag.h
│ │ │ ├── ccShader_PositionTextureA8Color_vert.h
│ │ │ ├── ccShader_PositionTextureColorAlphaTest_frag.h
│ │ │ ├── ccShader_PositionTextureColor_frag.h
│ │ │ ├── ccShader_PositionTextureColor_vert.h
│ │ │ ├── ccShader_PositionTexture_frag.h
│ │ │ ├── ccShader_PositionTexture_uColor_frag.h
│ │ │ ├── ccShader_PositionTexture_uColor_vert.h
│ │ │ ├── ccShader_PositionTexture_vert.h
│ │ │ ├── ccShader_Position_uColor_frag.h
│ │ │ ├── ccShader_Position_uColor_vert.h
│ │ │ ├── ccShaders.cpp
│ │ │ └── ccShaders.h
│ │ ├── sprite_nodes
│ │ │ ├── CCAnimationCache.cpp
│ │ │ ├── CCAnimationCache.h
│ │ │ ├── CCAnimation.cpp
│ │ │ ├── CCAnimation.h
│ │ │ ├── CCSpriteBatchNode.cpp
│ │ │ ├── CCSpriteBatchNode.h
│ │ │ ├── CCSprite.cpp
│ │ │ ├── CCSpriteFrameCache.cpp
│ │ │ ├── CCSpriteFrameCache.h
│ │ │ ├── CCSpriteFrame.cpp
│ │ │ ├── CCSpriteFrame.h
│ │ │ └── CCSprite.h
│ │ ├── support
│ │ │ ├── base64.cpp
│ │ │ ├── base64.h
│ │ │ ├── CCPointExtension.cpp
│ │ │ ├── CCPointExtension.h
│ │ │ ├── CCProfiling.cpp
│ │ │ ├── CCProfiling.h
│ │ │ ├── CCUserDefault.cpp
│ │ │ ├── CCUserDefault.h
│ │ │ ├── ccUtils.cpp
│ │ │ ├── ccUtils.h
│ │ │ ├── CCVertex.cpp
│ │ │ ├── CCVertex.h
│ │ │ ├── data_support
│ │ │ │ ├── ccCArray.cpp
│ │ │ │ ├── ccCArray.h
│ │ │ │ ├── uthash.h
│ │ │ │ └── utlist.h
│ │ │ ├── image_support
│ │ │ │ ├── TGAlib.cpp
│ │ │ │ └── TGAlib.h
│ │ │ ├── TransformUtils.cpp
│ │ │ ├── TransformUtils.h
│ │ │ └── zip_support
│ │ │ ├── ioapi.cpp
│ │ │ ├── ioapi.h
│ │ │ ├── unzip.cpp
│ │ │ ├── unzip.h
│ │ │ ├── ZipUtils.cpp
│ │ │ └── ZipUtils.h
│ │ ├── text_input_node
│ │ │ ├── CCIMEDelegate.h
│ │ │ ├── CCIMEDispatcher.cpp
│ │ │ ├── CCIMEDispatcher.h
│ │ │ ├── CCTextFieldTTF.cpp
│ │ │ └── CCTextFieldTTF.h
│ │ ├── textures
│ │ │ ├── CCTexture2D.cpp
│ │ │ ├── CCTexture2D.h
│ │ │ ├── CCTextureAtlas.cpp
│ │ │ ├── CCTextureAtlas.h
│ │ │ ├── CCTextureCache.cpp
│ │ │ ├── CCTextureCache.h
│ │ │ ├── CCTexturePVR.cpp
│ │ │ └── CCTexturePVR.h
│ │ ├── tileMap_parallax_nodes
│ │ │ ├── CCParallaxNode.cpp
│ │ │ ├── CCParallaxNode.h
│ │ │ ├── CCTileMapAtlas.cpp
│ │ │ ├── CCTileMapAtlas.h
│ │ │ ├── CCTMXLayer.cpp
│ │ │ ├── CCTMXLayer.h
│ │ │ ├── CCTMXObjectGroup.cpp
│ │ │ ├── CCTMXObjectGroup.h
│ │ │ ├── CCTMXTiledMap.cpp
│ │ │ ├── CCTMXTiledMap.h
│ │ │ ├── CCTMXXMLParser.cpp
│ │ │ └── CCTMXXMLParser.h
│ │ └── touch_dispatcher
│ │ ├── CCTouchDelegateProtocol.h
│ │ ├── CCTouchDispatcher.cpp
│ │ ├── CCTouchDispatcher.h
│ │ ├── CCTouch.h
│ │ ├── CCTouchHandler.cpp
│ │ └── CCTouchHandler.h
│ └── CocosDenshion
│ ├── include
│ │ ├── Export.h
│ │ └── SimpleAudioEngine.h
│ └── ios
│ ├── CDAudioManager.h
│ ├── CDAudioManager.m
│ ├── CDConfig.h
│ ├── CDOpenALSupport.h
│ ├── CDOpenALSupport.m
│ ├── CocosDenshion.h
│ ├── CocosDenshion.m
│ ├── SimpleAudioEngine.mm
│ ├── SimpleAudioEngine_objc.h
│ └── SimpleAudioEngine_objc.m
├── Prefix.pch
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── fps_images.png
│ ├── HelloWorld.png
│ ├── Icon@2x.png
│ ├── Icon-72.png
│ ├── Icon.png
│ ├── Icon-Small@2x.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Info.plist
│ └── iTunesArtwork
├── ScrollViewDemo
│ ├── Classes
│ │ ├── AppDelegate.cpp
│ │ ├── AppDelegate.h
│ │ ├── HelloWorldScene.cpp
│ │ └── HelloWorldScene.h
│ ├── ios
│ │ ├── AppController.h
│ │ ├── AppController.mm
│ │ ├── main.m
│ │ ├── RootViewController.h
│ │ └── RootViewController.mm
│ ├── libs
│ │ ├── cocos2dx
│ │ │ ├── actions
│ │ │ │ ├── CCActionCamera.cpp
│ │ │ │ ├── CCActionCamera.h
│ │ │ │ ├── CCActionCatmullRom.cpp
│ │ │ │ ├── CCActionCatmullRom.h
│ │ │ │ ├── CCAction.cpp
│ │ │ │ ├── CCActionEase.cpp
│ │ │ │ ├── CCActionEase.h
│ │ │ │ ├── CCActionGrid3D.cpp
│ │ │ │ ├── CCActionGrid3D.h
│ │ │ │ ├── CCActionGrid.cpp
│ │ │ │ ├── CCActionGrid.h
│ │ │ │ ├── CCAction.h
│ │ │ │ ├── CCActionInstant.cpp
│ │ │ │ ├── CCActionInstant.h
│ │ │ │ ├── CCActionInterval.cpp
│ │ │ │ ├── CCActionInterval.h
│ │ │ │ ├── CCActionManager.cpp
│ │ │ │ ├── CCActionManager.h
│ │ │ │ ├── CCActionPageTurn3D.cpp
│ │ │ │ ├── CCActionPageTurn3D.h
│ │ │ │ ├── CCActionProgressTimer.cpp
│ │ │ │ ├── CCActionProgressTimer.h
│ │ │ │ ├── CCActionTiledGrid.cpp
│ │ │ │ ├── CCActionTiledGrid.h
│ │ │ │ ├── CCActionTween.cpp
│ │ │ │ └── CCActionTween.h
│ │ │ ├── base_nodes
│ │ │ │ ├── CCAtlasNode.cpp
│ │ │ │ ├── CCAtlasNode.h
│ │ │ │ ├── CCNode.cpp
│ │ │ │ └── CCNode.h
│ │ │ ├── CCCamera.cpp
│ │ │ ├── CCCamera.h
│ │ │ ├── CCConfiguration.cpp
│ │ │ ├── CCConfiguration.h
│ │ │ ├── CCDirector.cpp
│ │ │ ├── CCDirector.h
│ │ │ ├── CCDrawingPrimitives.cpp
│ │ │ ├── CCDrawingPrimitives.h
│ │ │ ├── CCScheduler.cpp
│ │ │ ├── CCScheduler.h
│ │ │ ├── cocoa
│ │ │ │ ├── CCAffineTransform.cpp
│ │ │ │ ├── CCAffineTransform.h
│ │ │ │ ├── CCArray.cpp
│ │ │ │ ├── CCArray.h
│ │ │ │ ├── CCAutoreleasePool.cpp
│ │ │ │ ├── CCAutoreleasePool.h
│ │ │ │ ├── CCDictionary.cpp
│ │ │ │ ├── CCDictionary.h
│ │ │ │ ├── CCGeometry.cpp
│ │ │ │ ├── CCGeometry.h
│ │ │ │ ├── CCInteger.h
│ │ │ │ ├── CCNS.cpp
│ │ │ │ ├── CCNS.h
│ │ │ │ ├── CCObject.cpp
│ │ │ │ ├── CCObject.h
│ │ │ │ ├── CCSet.cpp
│ │ │ │ ├── CCSet.h
│ │ │ │ ├── CCString.cpp
│ │ │ │ ├── CCString.h
│ │ │ │ ├── CCZone.cpp
│ │ │ │ └── CCZone.h
│ │ │ ├── cocos2d.cpp
│ │ │ ├── effects
│ │ │ │ ├── CCGrabber.cpp
│ │ │ │ ├── CCGrabber.h
│ │ │ │ ├── CCGrid.cpp
│ │ │ │ └── CCGrid.h
│ │ │ ├── extensions
│ │ │ │ ├── CCBReader
│ │ │ │ │ ├── CCBFileLoader.cpp
│ │ │ │ │ ├── CCBFileLoader.h
│ │ │ │ │ ├── CCBMemberVariableAssigner.h
│ │ │ │ │ ├── CCBReader.cpp
│ │ │ │ │ ├── CCBReader.h
│ │ │ │ │ ├── CCBSelectorResolver.h
│ │ │ │ │ ├── CCControlButtonLoader.cpp
│ │ │ │ │ ├── CCControlButtonLoader.h
│ │ │ │ │ ├── CCControlLoader.cpp
│ │ │ │ │ ├── CCControlLoader.h
│ │ │ │ │ ├── CCLabelBMFontLoader.cpp
│ │ │ │ │ ├── CCLabelBMFontLoader.h
│ │ │ │ │ ├── CCLabelTTFLoader.cpp
│ │ │ │ │ ├── CCLabelTTFLoader.h
│ │ │ │ │ ├── CCLayerColorLoader.cpp
│ │ │ │ │ ├── CCLayerColorLoader.h
│ │ │ │ │ ├── CCLayerGradientLoader.cpp
│ │ │ │ │ ├── CCLayerGradientLoader.h
│ │ │ │ │ ├── CCLayerLoader.cpp
│ │ │ │ │ ├── CCLayerLoader.h
│ │ │ │ │ ├── CCMenuItemImageLoader.cpp
│ │ │ │ │ ├── CCMenuItemImageLoader.h
│ │ │ │ │ ├── CCMenuItemLoader.cpp
│ │ │ │ │ ├── CCMenuItemLoader.h
│ │ │ │ │ ├── CCMenuLoader.h
│ │ │ │ │ ├── CCNodeLoader.cpp
│ │ │ │ │ ├── CCNodeLoader.h
│ │ │ │ │ ├── CCNodeLoaderLibrary.cpp
│ │ │ │ │ ├── CCNodeLoaderLibrary.h
│ │ │ │ │ ├── CCNodeLoaderListener.h
│ │ │ │ │ ├── CCParticleSystemQuadLoader.cpp
│ │ │ │ │ ├── CCParticleSystemQuadLoader.h
│ │ │ │ │ ├── CCScale9SpriteLoader.cpp
│ │ │ │ │ ├── CCScale9SpriteLoader.h
│ │ │ │ │ ├── CCScrollViewLoader.cpp
│ │ │ │ │ ├── CCScrollViewLoader.h
│ │ │ │ │ ├── CCSpriteLoader.cpp
│ │ │ │ │ └── CCSpriteLoader.h
│ │ │ │ ├── CCControlExtension
│ │ │ │ │ ├── CCControlButton.cpp
│ │ │ │ │ ├── CCControlButton.h
│ │ │ │ │ ├── CCControlColourPicker.cpp
│ │ │ │ │ ├── CCControlColourPicker.h
│ │ │ │ │ ├── CCControl.cpp
│ │ │ │ │ ├── CCControlExtensions.h
│ │ │ │ │ ├── CCControl.h
│ │ │ │ │ ├── CCControlHuePicker.cpp
│ │ │ │ │ ├── CCControlHuePicker.h
│ │ │ │ │ ├── CCControlSaturationBrightnessPicker.cpp
│ │ │ │ │ ├── CCControlSaturationBrightnessPicker.h
│ │ │ │ │ ├── CCControlSlider.cpp
│ │ │ │ │ ├── CCControlSlider.h
│ │ │ │ │ ├── CCControlSwitch.cpp
│ │ │ │ │ ├── CCControlSwitch.h
│ │ │ │ │ ├── CCControlUtils.cpp
│ │ │ │ │ ├── CCControlUtils.h
│ │ │ │ │ ├── CCInvocation.cpp
│ │ │ │ │ ├── CCInvocation.h
│ │ │ │ │ ├── CCMenuPassive.cpp
│ │ │ │ │ ├── CCMenuPassive.h
│ │ │ │ │ ├── CCScale9Sprite.cpp
│ │ │ │ │ ├── CCScale9Sprite.h
│ │ │ │ │ ├── CCSpacer.cpp
│ │ │ │ │ └── CCSpacer.h
│ │ │ │ ├── CCListView
│ │ │ │ │ ├── CCControlDefine.h
│ │ │ │ │ ├── CCListViewCell.cpp
│ │ │ │ │ ├── CCListViewCell.h
│ │ │ │ │ ├── CCListView.cpp
│ │ │ │ │ └── CCListView.h
│ │ │ │ ├── CCNotificationCenter
│ │ │ │ │ ├── CCNotificationCenter.cpp
│ │ │ │ │ └── CCNotificationCenter.h
│ │ │ │ ├── CCScrollView
│ │ │ │ │ ├── CCScrollView.cpp
│ │ │ │ │ └── CCScrollView.h
│ │ │ │ └── CCTextureWatcher
│ │ │ │ ├── CCTextureWatcher.cpp
│ │ │ │ └── CCTextureWatcher.h
│ │ │ ├── include
│ │ │ │ ├── ccConfig.h
│ │ │ │ ├── CCEventType.h
│ │ │ │ ├── ccMacros.h
│ │ │ │ ├── CCProtocols.h
│ │ │ │ ├── ccTypes.h
│ │ │ │ ├── cocos2dExt.h
│ │ │ │ └── cocos2d.h
│ │ │ ├── kazmath
│ │ │ │ ├── include
│ │ │ │ │ └── kazmath
│ │ │ │ │ ├── aabb.h
│ │ │ │ │ ├── GL
│ │ │ │ │ │ ├── mat4stack.h
│ │ │ │ │ │ └── matrix.h
│ │ │ │ │ ├── kazmath.h
│ │ │ │ │ ├── mat3.h
│ │ │ │ │ ├── mat4.h
│ │ │ │ │ ├── neon_matrix_impl.h
│ │ │ │ │ ├── plane.h
│ │ │ │ │ ├── quaternion.h
│ │ │ │ │ ├── ray2.h
│ │ │ │ │ ├── utility.h
│ │ │ │ │ ├── vec2.h
│ │ │ │ │ ├── vec3.h
│ │ │ │ │ └── vec4.h
│ │ │ │ └── src
│ │ │ │ ├── aabb.c
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── GL
│ │ │ │ │ ├── mat4stack.c
│ │ │ │ │ └── matrix.c
│ │ │ │ ├── mat3.c
│ │ │ │ ├── mat4.c
│ │ │ │ ├── neon_matrix_impl.c
│ │ │ │ ├── plane.c
│ │ │ │ ├── quaternion.c
│ │ │ │ ├── ray2.c
│ │ │ │ ├── utility.c
│ │ │ │ ├── vec2.c
│ │ │ │ ├── vec3.c
│ │ │ │ └── vec4.c
│ │ │ ├── keypad_dispatcher
│ │ │ │ ├── CCKeypadDelegate.cpp
│ │ │ │ ├── CCKeypadDelegate.h
│ │ │ │ ├── CCKeypadDispatcher.cpp
│ │ │ │ └── CCKeypadDispatcher.h
│ │ │ ├── label_nodes
│ │ │ │ ├── CCLabelAtlas.cpp
│ │ │ │ ├── CCLabelAtlas.h
│ │ │ │ ├── CCLabelBMFont.cpp
│ │ │ │ ├── CCLabelBMFont.h
│ │ │ │ ├── CCLabelTTF.cpp
│ │ │ │ └── CCLabelTTF.h
│ │ │ ├── layers_scenes_transitions_nodes
│ │ │ │ ├── CCLayer.cpp
│ │ │ │ ├── CCLayer.h
│ │ │ │ ├── CCScene.cpp
│ │ │ │ ├── CCScene.h
│ │ │ │ ├── CCTransition.cpp
│ │ │ │ ├── CCTransition.h
│ │ │ │ ├── CCTransitionPageTurn.cpp
│ │ │ │ ├── CCTransitionPageTurn.h
│ │ │ │ ├── CCTransitionProgress.cpp
│ │ │ │ └── CCTransitionProgress.h
│ │ │ ├── menu_nodes
│ │ │ │ ├── CCMenu.cpp
│ │ │ │ ├── CCMenu.h
│ │ │ │ ├── CCMenuItem.cpp
│ │ │ │ └── CCMenuItem.h
│ │ │ ├── misc_nodes
│ │ │ │ ├── CCMotionStreak.cpp
│ │ │ │ ├── CCMotionStreak.h
│ │ │ │ ├── CCProgressTimer.cpp
│ │ │ │ ├── CCProgressTimer.h
│ │ │ │ ├── CCRenderTexture.cpp
│ │ │ │ └── CCRenderTexture.h
│ │ │ ├── particle_nodes
│ │ │ │ ├── CCParticleBatchNode.cpp
│ │ │ │ ├── CCParticleBatchNode.h
│ │ │ │ ├── CCParticleExamples.cpp
│ │ │ │ ├── CCParticleExamples.h
│ │ │ │ ├── CCParticleSystem.cpp
│ │ │ │ ├── CCParticleSystem.h
│ │ │ │ ├── CCParticleSystemQuad.cpp
│ │ │ │ └── CCParticleSystemQuad.h
│ │ │ ├── platform
│ │ │ │ ├── CCAccelerometerDelegate.h
│ │ │ │ ├── CCApplicationProtocol.h
│ │ │ │ ├── CCCommon.h
│ │ │ │ ├── CCEGLViewProtocol.cpp
│ │ │ │ ├── CCEGLViewProtocol.h
│ │ │ │ ├── CCFileUtils.h
│ │ │ │ ├── CCImage.h
│ │ │ │ ├── CCPlatformConfig.h
│ │ │ │ ├── CCPlatformMacros.h
│ │ │ │ ├── CCSAXParser.cpp
│ │ │ │ ├── CCSAXParser.h
│ │ │ │ ├── CCThread.h
│ │ │ │ ├── ios
│ │ │ │ │ ├── AccelerometerDelegateWrapper.h
│ │ │ │ │ ├── AccelerometerDelegateWrapper.mm
│ │ │ │ │ ├── CCAccelerometer.h
│ │ │ │ │ ├── CCAccelerometer.mm
│ │ │ │ │ ├── CCApplication.h
│ │ │ │ │ ├── CCApplication.mm
│ │ │ │ │ ├── CCCommon.mm
│ │ │ │ │ ├── CCDirectorCaller.h
│ │ │ │ │ ├── CCDirectorCaller.mm
│ │ │ │ │ ├── CCEGLView.h
│ │ │ │ │ ├── CCEGLView.mm
│ │ │ │ │ ├── CCES2Renderer.h
│ │ │ │ │ ├── CCES2Renderer.m
│ │ │ │ │ ├── CCESRenderer.h
│ │ │ │ │ ├── CCFileUtils.mm
│ │ │ │ │ ├── CCGL.h
│ │ │ │ │ ├── CCImage.mm
│ │ │ │ │ ├── CCLock.cpp
│ │ │ │ │ ├── CCLock.h
│ │ │ │ │ ├── CCPlatformDefine.h
│ │ │ │ │ ├── CCStdC.h
│ │ │ │ │ ├── CCThread.mm
│ │ │ │ │ ├── EAGLView.h
│ │ │ │ │ ├── EAGLView.mm
│ │ │ │ │ ├── FontLabel
│ │ │ │ │ │ ├── FontLabel.h
│ │ │ │ │ │ ├── FontLabel.m
│ │ │ │ │ │ ├── FontLabelStringDrawing.h
│ │ │ │ │ │ ├── FontLabelStringDrawing.m
│ │ │ │ │ │ ├── FontManager.h
│ │ │ │ │ │ ├── FontManager.m
│ │ │ │ │ │ ├── ZAttributedString.h
│ │ │ │ │ │ ├── ZAttributedString.m
│ │ │ │ │ │ ├── ZAttributedStringPrivate.h
│ │ │ │ │ │ ├── ZFont.h
│ │ │ │ │ │ └── ZFont.m
│ │ │ │ │ ├── OpenGL_Internal.h
│ │ │ │ │ └── Simulation
│ │ │ │ │ ├── AccelerometerSimulation.h
│ │ │ │ │ └── AccelerometerSimulation.m
│ │ │ │ ├── platform.cpp
│ │ │ │ └── platform.h
│ │ │ ├── script_support
│ │ │ │ ├── CCScriptSupport.cpp
│ │ │ │ └── CCScriptSupport.h
│ │ │ ├── shaders
│ │ │ │ ├── CCGLProgram.cpp
│ │ │ │ ├── CCGLProgram.h
│ │ │ │ ├── ccGLStateCache.cpp
│ │ │ │ ├── ccGLStateCache.h
│ │ │ │ ├── CCShaderCache.cpp
│ │ │ │ ├── CCShaderCache.h
│ │ │ │ ├── ccShaderEx_SwitchMask_frag.h
│ │ │ │ ├── ccShader_PositionColor_frag.h
│ │ │ │ ├── ccShader_PositionColor_vert.h
│ │ │ │ ├── ccShader_PositionTextureA8Color_frag.h
│ │ │ │ ├── ccShader_PositionTextureA8Color_vert.h
│ │ │ │ ├── ccShader_PositionTextureColorAlphaTest_frag.h
│ │ │ │ ├── ccShader_PositionTextureColor_frag.h
│ │ │ │ ├── ccShader_PositionTextureColor_vert.h
│ │ │ │ ├── ccShader_PositionTexture_frag.h
│ │ │ │ ├── ccShader_PositionTexture_uColor_frag.h
│ │ │ │ ├── ccShader_PositionTexture_uColor_vert.h
│ │ │ │ ├── ccShader_PositionTexture_vert.h
│ │ │ │ ├── ccShader_Position_uColor_frag.h
│ │ │ │ ├── ccShader_Position_uColor_vert.h
│ │ │ │ ├── ccShaders.cpp
│ │ │ │ └── ccShaders.h
│ │ │ ├── sprite_nodes
│ │ │ │ ├── CCAnimationCache.cpp
│ │ │ │ ├── CCAnimationCache.h
│ │ │ │ ├── CCAnimation.cpp
│ │ │ │ ├── CCAnimation.h
│ │ │ │ ├── CCSpriteBatchNode.cpp
│ │ │ │ ├── CCSpriteBatchNode.h
│ │ │ │ ├── CCSprite.cpp
│ │ │ │ ├── CCSpriteFrameCache.cpp
│ │ │ │ ├── CCSpriteFrameCache.h
│ │ │ │ ├── CCSpriteFrame.cpp
│ │ │ │ ├── CCSpriteFrame.h
│ │ │ │ └── CCSprite.h
│ │ │ ├── support
│ │ │ │ ├── base64.cpp
│ │ │ │ ├── base64.h
│ │ │ │ ├── CCPointExtension.cpp
│ │ │ │ ├── CCPointExtension.h
│ │ │ │ ├── CCProfiling.cpp
│ │ │ │ ├── CCProfiling.h
│ │ │ │ ├── CCUserDefault.cpp
│ │ │ │ ├── CCUserDefault.h
│ │ │ │ ├── ccUtils.cpp
│ │ │ │ ├── ccUtils.h
│ │ │ │ ├── CCVertex.cpp
│ │ │ │ ├── CCVertex.h
│ │ │ │ ├── data_support
│ │ │ │ │ ├── ccCArray.cpp
│ │ │ │ │ ├── ccCArray.h
│ │ │ │ │ ├── uthash.h
│ │ │ │ │ └── utlist.h
│ │ │ │ ├── image_support
│ │ │ │ │ ├── TGAlib.cpp
│ │ │ │ │ └── TGAlib.h
│ │ │ │ ├── TransformUtils.cpp
│ │ │ │ ├── TransformUtils.h
│ │ │ │ └── zip_support
│ │ │ │ ├── ioapi.cpp
│ │ │ │ ├── ioapi.h
│ │ │ │ ├── unzip.cpp
│ │ │ │ ├── unzip.h
│ │ │ │ ├── ZipUtils.cpp
│ │ │ │ └── ZipUtils.h
│ │ │ ├── text_input_node
│ │ │ │ ├── CCIMEDelegate.h
│ │ │ │ ├── CCIMEDispatcher.cpp
│ │ │ │ ├── CCIMEDispatcher.h
│ │ │ │ ├── CCTextFieldTTF.cpp
│ │ │ │ └── CCTextFieldTTF.h
│ │ │ ├── textures
│ │ │ │ ├── CCTexture2D.cpp
│ │ │ │ ├── CCTexture2D.h
│ │ │ │ ├── CCTextureAtlas.cpp
│ │ │ │ ├── CCTextureAtlas.h
│ │ │ │ ├── CCTextureCache.cpp
│ │ │ │ ├── CCTextureCache.h
│ │ │ │ ├── CCTexturePVR.cpp
│ │ │ │ └── CCTexturePVR.h
│ │ │ ├── tileMap_parallax_nodes
│ │ │ │ ├── CCParallaxNode.cpp
│ │ │ │ ├── CCParallaxNode.h
│ │ │ │ ├── CCTileMapAtlas.cpp
│ │ │ │ ├── CCTileMapAtlas.h
│ │ │ │ ├── CCTMXLayer.cpp
│ │ │ │ ├── CCTMXLayer.h
│ │ │ │ ├── CCTMXObjectGroup.cpp
│ │ │ │ ├── CCTMXObjectGroup.h
│ │ │ │ ├── CCTMXTiledMap.cpp
│ │ │ │ ├── CCTMXTiledMap.h
│ │ │ │ ├── CCTMXXMLParser.cpp
│ │ │ │ └── CCTMXXMLParser.h
│ │ │ └── touch_dispatcher
│ │ │ ├── CCTouchDelegateProtocol.h
│ │ │ ├── CCTouchDispatcher.cpp
│ │ │ ├── CCTouchDispatcher.h
│ │ │ ├── CCTouch.h
│ │ │ ├── CCTouchHandler.cpp
│ │ │ └── CCTouchHandler.h
│ │ └── CocosDenshion
│ │ ├── include
│ │ │ ├── Export.h
│ │ │ └── SimpleAudioEngine.h
│ │ └── ios
│ │ ├── CDAudioManager.h
│ │ ├── CDAudioManager.m
│ │ ├── CDConfig.h
│ │ ├── CDOpenALSupport.h
│ │ ├── CDOpenALSupport.m
│ │ ├── CocosDenshion.h
│ │ ├── CocosDenshion.m
│ │ ├── SimpleAudioEngine.mm
│ │ ├── SimpleAudioEngine_objc.h
│ │ └── SimpleAudioEngine_objc.m
│ ├── Prefix.pch
│ └── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── fps_images.png
│ ├── HelloWorld.png
│ ├── Icon@2x.png
│ ├── Icon-72.png
│ ├── Icon.png
│ ├── Icon-Small@2x.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Info.plist
│ └── iTunesArtwork
└── ScrollViewDemo.xcodeproj
├── project.pbxproj
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ └── tom.xcuserdatad
│ └── UserInterfaceState.xcuserstate
└── xcuserdata
└── tom.xcuserdatad
├── xcdebugger
│ └── Breakpoints.xcbkptlist
└── xcschemes
├── ScrollViewDemo.xcscheme
└── xcschememanagement.plist
104 directories, 794 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论