gpt4 book ai didi

ios - 使用 pickerview 填充 tableview

转载 作者:行者123 更新时间:2023-11-29 02:09:06 25 4
gpt4 key购买 nike

我有一个按钮、一个选择器 View 和一个表格 View 。当我按下按钮时,选择器 View 的当前选择将填充到 TableView 中。这是从pickerview中选取值的按钮的代码

- (IBAction)addCourse:(UIButton *)sender {

NSInteger numRow=[picker selectedRowInComponent:kNumComponent];//0=1st,1=2nd,etc
NSInteger SeaRow=[picker selectedRowInComponent:kSeaComponent];//0=fall,1=spring,2=summer
NSInteger CourseRow=[picker selectedRowInComponent:kCourseComponent];

NSString *num=Number[numRow];
NSString *season=Season[SeaRow];
NSString *course=Course[CourseRow];

NSString *msgCourse=[[NSString alloc ]initWithFormat:@"%@ ",course];
NSString *msgSeason=[[NSString alloc ]initWithFormat:@"%@ ",season];
NSString *msgYear=[[NSString alloc ]initWithFormat:@"%@ ",num];

}

然后我想将 msgCourse 等填充到我的表格 View

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

...Content from above msgCourse and etc

return cell;

}

请问如何修复第二部分中的空白?或者有什么例子可以看吗?

最佳答案

根据我从您的问题中了解到的内容,检查以下代码以确定它是否符合您的要求。如果没有,请发表评论,我会尽力跟进。

第一步:如果您还没有通过 Storyboard完成委托(delegate),那么您应该以编程方式做的第一件事是:

  -(void)ViewDidLoad
{
tableView.delegate = self;
tableView.datasource = self;
}

第二步:我没有在您的代码中看到 mutablearray,但我假设您要将 msgCourse 设置为 NSMutableArray。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// I assume you have only one section
// Return the number of sections.
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

// Return the number of rows in the section.
return [self.msgCourse count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = nil;
cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];

if(!cell){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"Cell"];
}

cell.textLabel.text=[self.msgCourse objectAtIndex:indexPath.row];
return cell;
}

最后一步: 顺便说一句,不要忘记将以下代码行添加到您的按钮操作中以重新加载您的 tableView,我假设您更新了 NSMutableArray 并想刷新 tableView。

- (IBAction)addCourse:(UIButton *)sender {
.....
.....
.....
[tableView reloadData];
}

这是一个很好的教程,值得复制以供学习:http://www.appcoda.com/ios-programming-tutorial-create-a-simple-table-view-app/

关于ios - 使用 pickerview 填充 tableview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29477521/

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