1

テーブル ビュー コントローラーから詳細ビュー コントローラーにデータを渡そうとしています。テーブルのすべてのエントリは、1 つを除いて正常に機能します。prepareForSegue メソッドは次のとおりです。

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    if ([[segue identifier] isEqualToString:@"showDetails"]) {
        NSIndexPath *indexPath = [[self tableView] indexPathForSelectedRow];
        NSDictionary *notification = [[self notifications] objectAtIndex:[indexPath row]];
        NRDetailViewController *destViewController = [segue destinationViewController];
        [destViewController setDate:[notification objectForKey:@"date"]];
        [destViewController setFrom:[notification objectForKey:@"from"]];
        [destViewController setIden:[notification objectForKey:@"identifier"]];
        [destViewController setPriority:[notification objectForKey:@"priority"]];
        [destViewController setSubject:[notification objectForKey:@"subject"]];
        [destViewController setMessage:[notification objectForKey:@"text"]];

    }
}

詳細ビューのインターフェイスは次のとおりです。

#import <UIKit/UIKit.h>

@interface NRDetailViewController : UIViewController

@property (weak, nonatomic) IBOutlet UITextField *dateField;
@property (weak, nonatomic) IBOutlet UITextField *fromField;
@property (weak, nonatomic) IBOutlet UITextField *idenField;

@property (weak, nonatomic) IBOutlet UITextField *prioField;
@property (weak, nonatomic) IBOutlet UITextField *subjectField;
@property (weak, nonatomic) IBOutlet UITextView *messageView;


@property (copy, nonatomic) NSString *date;
@property (copy, nonatomic) NSString *from;
@property (copy, nonatomic) NSString *iden;
@property (copy, nonatomic) NSString *priority;
@property (copy, nonatomic) NSString *subject;
@property (copy, nonatomic) NSString *message;


@end

詳細ビューの実装ファイルは次のとおりです。

#import "NRDetailViewController.h"

@interface NRDetailViewController ()

@end

@implementation NRDetailViewController

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

- (void)viewDidLoad
{
    [super viewDidLoad];
    [[self dateField] setText:[self date]];
    [[self fromField] setText:[self from]];
    [[self idenField] setText:[self iden]];
    [[self prioField] setText:[self priority]];
    [[self subjectField] setText:[self subject]];
    [[self messageView] setText:[self message]];



}

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

@end

idenField のテキストを iden のテキストに設定する際に問題があります。例外ブレークポイントを追加したところ、実際にこの行で例外が発生したことがわかりました。

[[self idenField] setText:[self iden]];

この時点で、[self iden] の値を出力し、渡したいコンテンツも含まれているため、問題が何であるかはまったくわかりません。前述したように、他のすべてのフィールドは正常に機能しているためです。 .

スローされる例外は次のとおりです。

2013-08-07 22:28:20.539 NotificationReader[1214:11303] -[__NSCFNumber length]: unrecognized selector sent to instance 0x7587a00

どんな助けでも大歓迎です。

4

3 に答える 3

7

次のようになります。

[destViewController setIden:[notification objectForKey:@"identifier"]];

NSStringではなくNSNumberを返しています。その行を次のように置き換えてみてください。

[destViewController setIden:[(NSNumber*)[notification objectForKey:@"identifier"] stringValue]];
于 2013-08-07T20:41:12.320 に答える
2

どこかで のNSNumber代わりにを渡していNSStringます。

于 2013-08-07T20:40:56.717 に答える