Created
March 14, 2016 16:39
-
-
Save 0gravity000/50f0bf173f55a7353b9a to your computer and use it in GitHub Desktop.
kitchen timer sample code 02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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