gpt4 book ai didi

iphone - iphone 中的日期选择器

转载 作者:行者123 更新时间:2023-11-29 11:15:45 26 4
gpt4 key购买 nike

我在我的应用程序中使用日期选择器 我希望当我从日期选择器中选择日期并单击完成按钮时,我需要在我选择的特定日期发生的某些 View 中列出其他类中的所有内容。哪个 View 最适合我显示该列表?

最佳答案

正如您所说,您已经创建了 datePicker,所以当您点击完成按钮时。

1) 将相应的数据存储到数组中,以便您可以将该数据显示到UItableView

2) 创建 TableView :这里你只需要创建 TableView 并显示那些数据。假设已经在你的数组中收集了数据(如步骤 1)。

按照给定的步骤在 tableView 中创建数据。

A) 在要显示 TableView 的 UiViewController.h 类中创建 UItableView 的实例

AS `UITableView *myTableView`;

B) 在 ViewController 中采用 UITableViewDataSource,UITableViewDelegate 协议(protocol) 你要显示 TableView 的地方

C)创建表(以编程方式或通过 IB(Interface Builder)在这里我以编程方式展示

//you may call this Method View Loading Time.    
-(void)createTable{
CGrect yourFrame=CGrectMake(0,20,320,400);//Set Desired Frame of Table;
myTableView=[[[UITableView alloc]initWithFrame:yourFrame style:UITableViewStylePlain] autorelease];
myTableView.backgroundColor=[UIColor clearColor];
myTableView.delegate=self;
myTableView.dataSource=self;
myTableView.separatorStyle= UITableViewCellSeparatorStyleNone;
myTableView.scrollEnabled=YES;
[self.view addSubview:myTableView];
}

//Data Source method to create number of section in Table View
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}

// Data Source method to create number of rows section of a Table View
- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
return [yourMutableArray count];
}
// Data Source method to create cells in Table View
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString *CellIdentifier = @"Cell";
//here you check for PreCreated cell.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

//Fill the cells...
cell.textLabel.text = [yourMutableArray objectAtIndex: indexPath.row];
//yourMutableArray Contains the Data(When You click On Done Button this array will stored the data).
return cell;
}

希望对你有帮助。

关于iphone - iphone 中的日期选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9516181/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com