I am trying to replace flash version of application at http://www.builderconcepthome2011.com/concept-home.php#/garageInterior_0 for iPad using Core Animation. So the requirement is to show an image with hotspots after video stops. For example in above example if user clicks on green hotspot which says "Go to laundary from garage", I have to show a video and once a video ends, I need to transition from a video to an image.
I think this could be done in following two ways
1) Play a video using AVPLayer and once video ends show an UIImageview with hotspots.
2) Do frame animation using CADisplayLink, and then transition to a UIImageview with hotspots.
I have already implemented this task using second approach but my problem is that images I am using for frame animation are of around 500kb size, and average video duration is 9 seconds. So that means if I do couple of these animations, my application size will be around 160mb. Whereas if i go by video path (average size of each video id 14mb), then my application size will be pretty small.
I dont know how to accomplish my task using combination of AVPlayer and UIImageview.
I am very new to Objective C and I dont know what is the best way to accomplish my task. I will really appreciate if somebody can provide me some pointers.