如何将文本字段数据从 UIView 控制器文本字段传递到单元格中的表格视图标签?我想以某种方式将文本字段数据添加到数组中,以便我可以将返回值的行数设置为数组计数。
我在我的模型中添加了一个 NSMutable 数组。
在我的视图控制器中,我正在实现 prepareForSegue 方法
if ([segue.identifier isEqualToString:@"Details"]){
MileageDetailViewController * mdv = [segue destinationViewController];
NSString *text;
startTextField.text = text;
mdv.label.text = text;
我已经尝试了几种不同的方法。我已经用一个数组完成了这项工作,并尝试将文本对象添加到一个数组中,但也没有显示。最后一种方法是我尝试使用标签并将 textField 中的文本添加到 tableview 标签。
In the tableView I add this code to grab the text from the viewController.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Reuse"];
UILabel *labe = (UILabel *) [cell viewWithTag:20];
labe.text = label.text;
// Configure the cell...
return cell;