I am new to iphone app and pre-beginner of SDK programming. I have a flash file and need to reprogram for iphone.
The design of the app is a navbar with start buttom and an image view below them. I have 46 PNL images that I want to show in succession after the start button is clicked. Each picture will stay on the screen for 5 seconds.
I tried to replicate a code that i got off youtube but it did not work.
For the viewcontroller.h i used the following code verbatim and was able to link images (I call them ac) to the image view and also to establish a link for the start button:
{iboutlet uiimageview *ac; }
(dash) (ibaction)startclick:(id)sender;
For the viewcontroller.m I used the following concept but I received many syntax warnings:
NSarray List of 46 png files using @" notation for string Last png followed by nill Then some notation for length that each image appears.
If someone could help me out with the viewcontroller.h and viewcontroller.m to command this sort of animation, it would be much appreciated.
Marc