Hi all (and of course Jules 
thereās this iOS App which Iāve developed in the last few weeks, using Juce.
Itās really a charme using Juce, so I dont have to stick to ObjectiveC and all that Cocoa stuff 
Thereās one issue⦠drawing speed. Imagine I have a control component which consists basically of an animated background and a (bitmap or whatever)-control that you can move around on this canvas (something like a x/y corrdinate slider). The components canvas itself is about 80% of the (i use) iPods 4G screen size.
I use a timer (like in Juce gui demos) to repaint the canvas regularly, so i can animate.
After experimenting a lot, i measured the fps rate with the performance tool (core animation). Surely the measurements will not be 100% accurate, but they reflect the impressions that i had seeing the result on the iPod.
I get a max. of around 40 or 45 fps when running the paint method without actually painting anything.
Something around 14 or 15 fps when painting a png image as background (using drawImageAt(ā¦), image slightly smaller than canvas, so thereās no scaling )
and something around 4 or 5 fps when additionally drawing a few moving resp. growing circles⦠(this is only a part of what i finally would like to animate).
I am afraid, this is by far too slow⦠also the slider reacts really slow.
I read some topics in theis forum and followed advices such as building for optimized arm7⦠however, i am really no expert in graphics and guis and still kind of new to Juce⦠so forgive me if this all sounds dumb.
There are a few questions that arise.
First⦠do i maybe just overestimate the iOS hardware ? (the app runs like a charm in the simulator)
Otherwise ⦠is there something i can do to speed up the painting ? There are some topics talking about softwareRenderers and soā¦i think i understood that iOS painting is already implemented using native coreGraphics, so relatively fast and optimized for the hardware ?
What i finally need is solid 15 or better 20 fps (when additionally playing 8 audio tracks from file simultaneouslyā¦but this doesnt seem to be the problem).
Iād appreciate any kind of advice 
Thanks
Rudi
