0

我正在尝试将日期选择器添加到我的 iPad 应用程序中。如何将其添加为子视图?

4

1 回答 1

1

这是我使用的

UIDatePicker *datePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 40, 0, 0)];
// ... populate your date picker and format it as you see fit.
[self.view addSubview:datePicker];
于 2012-08-28T16:28:19.297 回答