Hey I'm having some issues getting a UIPickerView to overlay a UITableView
My app looks like this pretty much
RootView has a listing of
- Latest
- Popular
- Random
If you click popular it loads BrowsePopularViewController which is a sub class of BrowseBaseViewController which is a subclass of UITableViewController
So here is a screenshot of a compile error for BrowsePopularViewController.m
Here is my BrowsePopularViewController.h
Code:
#import <UIKit/UIKit.h>
#import "BrowseBaseViewController.h"
@interface BrowsePopularViewController : BrowseBaseViewController <UIPickerViewDelagate> {
UIPickerView *rangePicker;
NSArray *rangeArray;
}
@property (nonatomic, retain) UIPickerView *rangePicker;
@property (nonatomic, retain) NSArray *rangeArray;
@end
I can't figure out how to setup the pickerViewDelagate.. I can't really do it in IB since the only nib I have created was for the MainWindow
thanks