jakub Hi, is it possible to add native UIImageView to SPSprite? Something like this? SPSprite *sprite = [[SPSprite alloc]init; UIImageView *view = [[UIImageView alloc]initWithImage:curve]; [sprite addChild:view]; Thanks for your answers. Jakub
Shilo Short answer: It's not possible to add UIKit elements to Sparrow. You may only add SPDisplayObjects to sprites. You could either use an SPImage: SPImage *image = [[SPImage alloc] initWithImage:curve]; Or you could add the UIImageView to an actual UIView. See below for more info: http://wiki.sparrow-framework.org/manual/adding_uikit_elements_on_top_of_sparrow