我是iPhone应用程序开发的新手。我的要求是:
在我的FirstViewController.xib
中,我有2 UITextField
个。我想在UITableView
中的SecondViewController
上显示两个文本字段的数据。
答案 0 :(得分:1)
我希望你有一个按钮在SecondViewController中导航。点击按钮时,您应该导航到SecondViewController。
这里可以在按下按钮时将这两个文本字段数据传递给数组,并将该数组分配给SecondViewController的对象。
FirstViewcontroller按钮点击事件可能如下所示。
-(void) buttonTapped
{
SecondViewController *svc = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil] autorelease];
NSArray *arr = [NSArray arrayWithObjects:textField1.text,textField2.text,nil];
svc.tableData = arr;
[self presentModalViewController:svc animated:YES];
}
在SecondViewController中有一个属性tableData。
@interface SecondViewController : UITableViewController {
NSArray *tableData; // contains array of data to be displayed in tableview
}
@property (nonatomic,retain) NSArray *tableData;
@end
你的tableview委托方法可能如下所示。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)aTableView {
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return [tableData count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CellIdentifier";
// Dequeue or create a cell of the appropriate type.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [tableData objectAtIndex:indexPath.row];
return cell;
}
最好的运气。