1

マスタービューにサウンドのリストを表示するマスター/詳細アプリを作成しようとしています。サウンドをタップすると、詳細画面に移動し、ラベルとして選択したサウンドが表示され、サウンドの短いムービーが表示されます。私の問題は、すべてのサウンドがリストの最初のサウンドの名前をラベルとして表示することです。サウンドBをタップすると、詳細画面に「サウンドB」と表示されます。tSound Fをタップすると、詳細画面に「SoundB」と表示されます。

エラーや警告は表示されません。何か案は?

前もって感謝します。

slfViewController.h

#import <UIKit/UIKit.h>

@interface slfViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>

@property (nonatomic, strong) IBOutlet UITableView *tableView;

@end

slfViewController.m

#import "slfViewController.h"
#import "slfSoundDetailViewController.h"

@interface slfViewController ()

@end

@implementation slfViewController 
{
    NSArray *tableData;
    NSArray *thumbnails;
}

@synthesize tableView = _tableView;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    tableData = [NSArray arrayWithObjects:
             @"B Sound", 
             @"Ch Sound", 
             @"D Sound", 
             @"F Sound", 
                ...
             @"Zh Sound",
             nil];

thumbnails = [NSArray arrayWithObjects:
              @"b.jpg", 
              @"ch.jpg", 
              @"d.jpg", 
              @"f.jpg", 
                ...
              @"zh.jpg",
              nil];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if ([segue.identifier isEqualToString:@"showSoundDetail"]) {
        NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
        slfSoundDetailViewController *destViewController = segue.destinationViewController;
        destViewController.soundName = [tableData objectAtIndex:indexPath.row];
    }
}

#pragma mark - TableView Data Source methods

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

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    cell.textLabel.text = [tableData objectAtIndex:indexPath.row];
    cell.imageView.image = [UIImage imageNamed:[thumbnails objectAtIndex:indexPath.row]];

    return cell;
}


@end

slfSoundDetailViewController.h

#import <UIKit/UIKit.h>

@interface slfSoundDetailViewController : UIViewController

@property (nonatomic, strong) IBOutlet UILabel *soundLabel;
@property (nonatomic, strong) NSString *soundName;

@end

slfSoundDetailViewController.m

#import "slfSoundDetailViewController.h"

@interface slfSoundDetailViewController ()

@end

@implementation slfSoundDetailViewController

@synthesize soundLabel;
@synthesize soundName;


- (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.
    soundLabel.text = soundName;
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

@end
4

1 に答える 1

0

設定soundLabel.text = soundNameviewDidLoadているのは…なので、一度だけ呼び出されます(View Controllerのビューが最初にロードされたとき)。このアプリは、の同じインスタンスを再利用している可能性が高いslfSoundDetailViewControllerため、ビューをリロードしません。

-[slfSoundDetailViewController setSoundName:]またはのいずれかをオーバーライドして、そこ-[slfSoundDetailViewController viewWillAppea:]に設定することをお勧めしますsoundLabel.text

于 2012-12-14T02:58:23.690 に答える