Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 iphone 的照片文件添加一个精灵。有什么简单的方法吗?cocos2d 是否支持文件系统。是否有任何获取照片文件的方法。
如果是这样,那么 cocos 接收什么格式的数据。
您可以使用 UIImagePickerController 获取 UIImage。
然后您可以使用以下代码从中创建一个 CCSprite。
CCSprite *mySpriteFromImage = [CCSprite spriteWithCGImage:[myPickerImage CGImage] key:@"pickerImage"];