0

我有一个 UITableView 和另一个视图。另一个视图有一个 UITextView,我希望根据选择的表视图中的哪一行来填充不同的文本。如果我为所有不同的文本选项创建不同的视图,我知道该怎么做。如果我这样做,我可以在点击该行时打开该视图。我只是想避免创建一堆不同的视图,而只使用一个加载不同文本的视图,具体取决于在表格视图中点击的行。我想我只需要知道带有文本视图的视图如何从表视图访问 indexPath.row 。有什么建议么?

编辑:这是我的代码。

LHRRoster.m

#import "LHRRoster.h"
#import "CustomCellBackground.h"
#import "OnMyHonor.h"
#import "AVA.h"
#import "Receivers.h"
#import "BandDetailView.h"

@interface LHRRoster ()

@end

@implementation LHRRoster
{
    NSMutableArray *mbTableData;
}

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    mbTableData = [NSMutableArray arrayWithObjects:@"Aesthetics Versus Architecture", @"On My Honor", @"Receivers", @"Skyscraper Stereo", @"California", @"Late Ones", @"Uh-Huh Baby Yeah", @"Danielle Bouchard", @"Chris Karrer", @"Joey Blue", @"The Codas", @"Your Favorite Hero", @"Nixon", @"Skam Impaired", @" SaySomethingHugeOnFire", @"Adore Me Not", @"Common Collective", @"The Royal Tees", @"The Gravetones", @"Bush League", @"Rock & Roll Television", @" Tastyface", @"The Lips", @"Mercy Academy", @"Audiostrobelight", nil];

    self.title = @"LHR Roster";
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [mbTableData count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *mbTableIdentifier = @"SimpleTableItem";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:mbTableIdentifier];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:mbTableIdentifier];
        cell.textLabel.font=[UIFont systemFontOfSize:14.0];
    }

    cell.backgroundView = [[CustomCellBackground alloc] init];
    cell.selectedBackgroundView = [[CustomCellBackground alloc] init];
    cell.textLabel.backgroundColor = [UIColor clearColor];
    cell.textLabel.highlightedTextColor = [UIColor darkGrayColor];

    cell.textLabel.text = [mbTableData objectAtIndex:indexPath.row];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    BandDetailView *detailView = [[BandDetailView alloc]initWithNibName:@"BandDetailView" bundle:nil];

    if (indexPath.row == 0)
    {
        detailView.title = @"Aesthetics vs Architecture";
        UIImage *image = [UIImage imageNamed: @"AVA.png"];
        [detailView.bandPic setImage:image];
        NSString *bio = @"";
        [detailView.bandInfo setText:bio];
        [self.navigationController pushViewController:detailView animated:YES];
    }
}

@end
4

5 回答 5

1

您正在获取选定的单元格对象,只需将该对象传递给 TextView,它将动态加载选定的单元格数据。需要注意的重要一点,首先推送视图控制器,然后将数据传递给该控制器。在您的代码中,您首先传递了数据,然后推视图控制器,这不起作用

于 2013-05-18T05:11:38.113 回答
0

只需添加您的代码即可

     yourtextfieldname.text=[yourarrayname objectAtIndex:indexpath.row];

并在您的文本字段中获取您选择的行文本字段数据。

我希望这段代码对你有用。

于 2013-05-18T05:19:49.110 回答
0

扩展您的 didSelectRowAtIndexPath 以修改您的 UITextView。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    **myUiTextView.text = somethingBasedOnTheRowSelected[indexPath.row];** <-- new code here


    // followed by your existing code
}
于 2013-05-18T01:32:53.243 回答
0
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
      BandDetailView *detailView = [[BandDetailView alloc]initWithNibName:@"BandDetailView"  bundle:nil];

    if (indexPath.row == 0)
    {
        detailView.title = @"Aesthetics vs Architecture";
        UIImage *image = [UIImage imageNamed: @"AVA.png"];
        [detailView.bandPic setImage:image];
        NSString *bio = @"";
        [detailView.bandInfo setText:bio];
        [self.navigationController pushViewController:detailView animated:YES];
    }
    **myUiTextView.text =[yourarray  indexPath.row];
}

按照此代码此代码可能会对您有所帮助。

于 2013-05-18T04:21:56.413 回答
0

MVC - 模型、视图、控制器。您的数据是模型。表格视图和文本视图是视图。你的 UIViewController 是控制器。它完成所有工作。

在控制器中实现didSelectRowAtIndexPath,它是表视图的委托。现在您知道选择了表格的一行,并且您知道它是哪一行。因此,从模型中拉出所需的文本并将其粘贴在 UITextView 中。

于 2013-05-18T00:02:59.833 回答