Skip to content

Instantly share code, notes, and snippets.

@0gravity000
Created March 14, 2016 16:39
Show Gist options
  • Save 0gravity000/50f0bf173f55a7353b9a to your computer and use it in GitHub Desktop.
Save 0gravity000/50f0bf173f55a7353b9a to your computer and use it in GitHub Desktop.
kitchen timer sample code 02
- (NSInteger)pickerView:(UIPickerView *)timerPicker numberOfRowsInComponent:(NSInteger)component
{
if (component == 0) {
return 60;
} else if (component == 1) {
return 60;
} else {
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment