3

a 的默认滚动设置UIPickerView设置为垂直。可以UIPickerView横向实现吗?

如果是这样,您能否给我看一个样本或指导我在哪里找到有用的文档?

4

2 回答 2

2

您可以使用CPPickerView .. UIPickerView 的自定义、可配置、水平版本(基于旋转轮或老虎机隐喻),包含表格单元实现。最初用于压缩多选项设置所需的空间/行。

于 2012-10-02T19:12:56.067 回答
2

在 .h 文件中

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UIPickerViewDelegate> {
    IBOutlet UIPickerView *pickerView;
    NSMutableArray *itemArray;
    IBOutlet UILabel *myLabel;
}

@property (nonatomic, retain)  UIPickerView *pickerView;
@property (nonatomic, retain)  UILabel *myLabel;

@end  

在 .XIB 文件中

拖放 UIPickerView 和一个 UILable 还将“delegate”和“Referencing Outlet”都连接到 FileOwner。

在 .M 文件中

#import "ViewController.h"

@implementation ViewController

@synthesize pickerView, myLabel;

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    self.pickerView.delegate = self;
    self.pickerView.showsSelectionIndicator =YES;
    self.pickerView.backgroundColor = [UIColor blackColor];

    CGAffineTransform rotate = CGAffineTransformMakeRotation(M_PI_2);
    rotate = CGAffineTransformScale(rotate, 0.1, 0.8);
    [self.pickerView setTransform:rotate];  

    self.pickerView.center = CGPointMake(160,75);


    UILabel *theview[20]; 
    CGAffineTransform rotateItem = CGAffineTransformMakeRotation(-M_PI_2);
    rotateItem = CGAffineTransformScale(rotateItem, 1, 10);

    for (int i=0;i<20;i++) {  
        theview[i] = [[UILabel alloc] init];
        theview[i].text = [NSString stringWithFormat:@"%d",i];
        theview[i].textColor = [UIColor blackColor];
        theview[i].frame = CGRectMake(0,0, 100, 100);
        theview[i].backgroundColor = [UIColor clearColor];
        theview[i].textAlignment = NSTextAlignmentCenter; //UITextAlignmentCenter is deprecated.
        theview[i].shadowColor = [UIColor whiteColor];
        theview[i].shadowOffset = CGSizeMake(-1,-1);
        theview[i].adjustsFontSizeToFitWidth = YES;

        UIFont *myFont = [UIFont fontWithName:@"Georgia" size:15];
        [theview[i] setFont:myFont];

        theview[i].transform = rotateItem;
    }





    itemArray = [[NSMutableArray alloc] init];

    for (int j=0;j<20;j++) { 

        [itemArray addObject:theview[j]];

    }

}


#pragma mark -
#pragma mark Picker View Methods

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)thePickerView {

    return 1;
}

- (NSInteger)pickerView:(UIPickerView *)thePickerView numberOfRowsInComponent:(NSInteger)component {

    return [itemArray count];
}



- (UIView *)pickerView:(UIPickerView *)thePickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{

    return [itemArray objectAtIndex:row];

}

- (void)pickerView:(UIPickerView *)thePickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {

    myLabel.text = [NSString stringWithFormat:@"SELECTED: %d", row+1];
}


- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

@end
于 2013-03-20T12:39:47.143 回答