iOS中使用UIDatePicker製作時間選取器的執行個體教程_IOS

來源:互聯網
上載者:User

UIDatePicker的建立
UIDatePicker是一個可以用來選擇或者設定日期的控制項,不過它是像轉輪一樣的控制項,而且是蘋果專門為日曆做好的控制項,如下圖所示:

除了UIDatePicker控制項,還有一種更通用的轉輪形的控制項:UIPickerView,只不過UIDatePicker控制項顯示的就是日 曆,而UIPickerView控制項中顯示的內容需要我們自己用代碼設定。本篇文章簡單介紹UIDatePicker控制項,後邊的文章會介紹 UIPickerView。

1、運行Xcode ,建立一個Single View Application,名稱為UIDatePicker Test,其他設定如下圖所示:

2、單擊ViewController.xib,開啟Interface Builder。拖一個UIDatePicker控制項到視圖上:

3、然後拖一個按鈕在視圖上,並修改按鈕名稱為Select:

單擊按鈕後,彈出一個Alert,用於顯示使用者所作選擇。

4、建立映射:開啟Assistant Editor,選中UIDatePicker控制項,按住Control,拖到ViewController.h中:

建立一個Outlet,名稱為datePicker:

然後以同樣的方式為按鈕建立一個Action映射,名稱為buttonPressed,事件類型為預設的Touch Up Inside。

5、選中UIDatePicker控制項,開啟Attribute Inspector,在其中設定Maximum Date比如我們這裡設為2100-12-31:


執行個體
而今天我們要做的時間選取器成品具體效果如下:

我們自訂一個LGDatePickerView,在LGDatePickerView裡面實現。

背景半透明:

背景是半透明的,點擊的灰色背景的時候,時間選取器消失。在LGDatePickerView初始化方法裡,代碼如下:

複製代碼 代碼如下:

- (id)init
{
    self = [super init];
    if (self) {
  //背景半透明,綁定取消方法
    UIControl *control = [[UIControl alloc] initWithFrame:SCREEN_BOUNDS];
    control.backgroundColor = [UIColor colorWithRed:0.0/255.0 green:0.0/255.0 blue:0.0/255.0 alpha:0.5f];
    [self addSubview:control];
    [control addTarget:self action:@selector(actionCancel:) forControlEvents:UIControlEventTouchUpInside];    
     }
    return self;
}

綁定的actionCancel方法:
複製代碼 代碼如下:

- (void)actionCancel:(id)sender
{
    [self removeFromSuperview];
}

確定取消按鈕:

看到上面的確定取消按鈕,你會怎麼做,寫一個UIView上面放兩個UIButton。這樣做也是可以實現的。我們還可以用UIToolbar。在LGDatePickerView初始化方法裡加上下面這段代碼:

複製代碼 代碼如下:

 // Toolbar
UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, SCREEN.height - 250, SCREEN.width, 50)];
toolbar.autoresizingMask = UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleWidth;
UIBarButtonItem *itemCancelDone = [[UIBarButtonItem alloc] initWithTitle:@"確定" style:UIBarButtonItemStylePlain target:self action:@selector(actionConfirm:)];
UIBarButtonItem *itemCancel = [[UIBarButtonItem alloc] initWithTitle:@"取消" style:UIBarButtonItemStylePlain target:self action:@selector(actionCancel:)];
UIBarButtonItem *space = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[toolbar setItems:[NSArray arrayWithObjects:itemCancel,space,itemCancelDone, nil]];
[control addSubview:toolbar];

actionCancel上面已經實現了。下面實現actionConfirm方法。它有什麼作用呢?

點擊的時候擷取到時間,然後通過代理代理出去。
時間選取器消失:

複製代碼 代碼如下:

  - (void)actionConfirm:(id)sender
  {
      if ([self.delegate respondsToSelector:@selector(datePickerView:didSelectTime:)]) {
          [self.delegate datePickerView:self didSelectTime:self.datePicker.date];
      }
      [self removeFromSuperview];
  }

代理方法:

在LGDatePickerView.h

複製代碼 代碼如下:

@protocol LGDatePickerViewDelegate <NSObject>

- (void)datePickerView:(LGDatePickerView *)datepicker didSelectTime:(NSDate *)time;

@end


建立UIDatePicker:

在LGDatePickerView.h定義一個全域變數

複製代碼 代碼如下:

@property (nonatomic, strong) UIDatePicker *datePicker;

在LGDatePickerView初始化方法裡加上下面這段代碼:
複製代碼 代碼如下:

UIDatePicker *datePicker = [[UIDatePicker alloc] init];
datePicker.backgroundColor = [UIColor whiteColor];
datePicker.datePickerMode = UIDatePickerModeCountDownTimer;
datePicker.date = [NSDate date];
datePicker.frame = CGRectMake(0, SCREEN.height - 200, SCREEN.width, 220);
[control addSubview:datePicker];
self.datePicker = datePicker;

使用LGDatePickerView

使用起來很簡單,建立一下,然後載入self.view上面即可:

複製代碼 代碼如下:

    LGDatePickerView *datePicker = [[LGDatePickerView alloc] init];
    datePicker.delegate = self;
    datePicker.datePicker.date = [NSDate date];
    datePicker.frame = self.view.bounds;
    [self.view addSubview:datePicker];

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.