DistancePickerView.h 680 B

123456789101112131415161718192021
  1. //
  2. // DistancePickerView.h
  3. //
  4. // Created by Evan on 12/27/10.
  5. // Copyright 2010 NCPTT. All rights reserved.
  6. //
  7. // Adapted from LabeledPickerView by Kåre Morstøl (NotTooBad Software).
  8. // This file only Copyright (c) 2009 Kåre Morstøl (NotTooBad Software).
  9. // This file only under the Eclipse public license v1.0
  10. // http://www.eclipse.org/legal/epl-v10.html
  11. #import <UIKit/UIKit.h>
  12. @interface DistancePickerView : UIPickerView {
  13. NSMutableDictionary *labels;
  14. }
  15. - (void) addLabel:(NSString *)labeltext forComponent:(NSUInteger)component forLongestString:(NSString *)longestString;
  16. - (void) updateLabel:(NSString *)labeltext forComponent:(NSUInteger)component;
  17. @end