我有一个基于导航的UITableView应用程序。这是我的应用程序的工作方式。
在rootViewController上我有一组问题和nextViewController(这也是UITableView)我有这些问题的多选答案。我希望用户点击这些问题然后转到nextViewController选择答案并在rootViewController的cell.detailTextLabel中的Question下显示该答案。
我能够得到答案,但是当我在rootViewController上显示它时,答案显示在所有行上。不知道如何做到这一点。
下面是我在rootViewController上的代码。我将不胜感激如果有人可以帮助我。 谢谢!
#import "RootViewController.h"
#import "NextViewController.h"
#import "xxxAppDelegate.h"
@implementation RootViewController
@synthesize questions;
@synthesize questAns;
@synthesize aNote;
#pragma mark -
#pragma mark View lifecycle
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"xxx";
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Submit" style:UIBarButtonItemStyleBordered target:self action:@selector(SubmitBtn:)] autorelease];
self.navigationItem.leftBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Clear" style:UIBarButtonItemStyleBordered target:self action:@selector(ClearBtn:)] autorelease];
questions = [[NSArray alloc] initWithObjects:@"Question 1", @"Question 2", @"Question 3", nil];
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.tableView reloadData];
}
#pragma mark -
#pragma mark Table view data source
// Customize the number of sections in the table view.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [questions count];
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell.
cell.textLabel.text = [questions objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
xxxAppDelegate *mainDelegate = (xxxAppDelegate *)[[UIApplication sharedApplication]delegate];
cell.detailTextLabel.text = mainDelegate.MainLocLbl;
NSLog(@"Indexpath.row on root %d", indexPath.row);
NSLog(@"detail text %@", mainDelegate.MainLocLbl);
return cell;
}
#pragma mark -
#pragma mark Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NextViewController *detailViewController = [[NextViewController alloc] initWithNibName:@"NextViewController" bundle:nil];
// ...
// Pass the selected object to the new view controller.
//questAns = [questions objectAtIndex:indexPath.row];
//detailViewController.answers = questAns;
xxxAppDelegate *mainDelegate = (xxxAppDelegate *)[[UIApplication sharedApplication]delegate];
detailViewController.aNote = mainDelegate.MainLocLbl;
NSLog(@"dtl ans %@", detailViewController.aNote);
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];
}
#pragma mark -
#pragma mark Memory management
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Relinquish ownership any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
// Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
// For example: self.myOutlet = nil;
}
- (void)dealloc {
[super dealloc];
}
@end
答案 0 :(得分:0)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
上述方法是配置每个单元格。在应用代理中存储一个答案时, 每个细胞都得到了相同的答案。
您需要做的是创建字典或在rootViewController中存储数据的其他方式。把答案放在那里,这样你就可以存储所有的答案,而不仅仅是一个答案。
答案 1 :(得分:0)
我不会创建一个字符串数组,而是考虑创建一个对象数组。每个对象都有一个NSString *问题,一个NSArray *答案,其中将填充NSString答案,NSString *标题和NSString *字幕。
然后,当用户选择其中一行时,您将该对象传递到下一个tableview。在下一个tableview中,当一个人选择其中一个答案时,它会将该对象的字幕设置为该行的标签。
我意识到您可能希望这是一个简单的项目,但我会使用Core Data。它可能有点矫枉过正,但它使事情变得如此简单,特别是如果你想让它在以后更复杂的话。