DependentComponentPickerViewController.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:
iPhone
开发平台:
MultiPlatform
- //
- // DependentComponentPickerViewController.h
- // Pickers
- //
- // Created by Jeff LaMarche on 7/7/08.
- // Copyright 2008 __MyCompanyName__. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #define kStateComponent 0
- #define kZipComponent 1
- @interface DependentComponentPickerViewController : UIViewController <UIPickerViewDelegate, UIPickerViewDataSource> {
- IBOutlet UIPickerView *picker;
- NSDictionary *stateZips;
- NSArray *states;
- NSArray *zips;
- }
- @property (retain, nonatomic) UIPickerView *picker;
- @property (retain, nonatomic) NSDictionary *stateZips;
- @property (retain, nonatomic) NSArray *states;
- @property (retain, nonatomic) NSArray *zips;
- - (IBAction)butonPressed:(id)sender;
- @end