i want to know what API's in iPhone that we used to:
- Achieve an action by pressing a button
- Show normal input fields
- Give access to a persistent storage
- Realize a count-down timer
i want to know what API's in iPhone that we used to:
UIButton
's -addTarget: action: forControlEvents:
will help you out there.UITextField
here.NSTimer
.