make an imageView move in objective-c -


i'm trying make bird jump pressing button. have not idea how that. created timer don't know how use that.

int birdflight;  @interface birdviewcontroller : uiviewcontroller {      iboutlet uibutton *flybutton;     iboutlet uiimageview *bird;      nstimer *birdmovement;  }  -(ibaction)buttonbirdfly:(id)sender;   @end 

how use method?

    @implementation birdviewcontroller      -(ibaction)buttonbirdfly:(id)sender     {       } 


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -