
iPhone UIButton checkbox example required.. can any one please explain me.. how to create a checkbox button using UIButton in XIB.

UIButton CheckBox Example:
In your .xib files Inspector window, set the UIButton state (selected and unselected) and assign two different images(check & unchecked) respectively.
Connect your UIButton to file owner with your button outlet and Action.
Copy and paste the given action in viewcontroller files..
Finally Build & GO

-(IBAction)checkBoxClicked:(id)sender {
if(yourButton.selected == NO){
self.yourButton.selected = YES;
}else{
self.byourButton.selected = NO;
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.