0

誰でも問題を解決するのを手伝ってもらえますか。nsobject でプロパティ リストを使用してアプリを開発したいと考えています。アプリを実行すると、エラーは発生しませんが、bnm.plist からのデータが uitableview に読み込まれませんでした。

以下はViewController.mです

#import "MCWViewController.h"
#import "MCWPlacesDetailViewController.h"
#import "MCWPlaces.h"

@interface MCWViewController ()

@end

@implementation MCWViewController {
    NSArray *places;
}

@synthesize tableView = _tableView;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Initialize table data

    // Find out the path of bnm.plist
    NSString *path = [[NSBundle mainBundle] pathForResource:@"bnm" ofType:@"plist"];

    // Load the file content and read the data into arrays
    NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
    MCWPlaces *placeGO = [MCWPlaces new];
    placeGO.name = [dict objectForKey:@"PlaceName"];
    placeGO.info = [dict objectForKey:@"PlaceInfo"];

    places = [NSArray arrayWithObject:placeGO];
}

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

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

}

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

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

    MCWPlaces *place = [places objectAtIndex:indexPath.row];
    cell.textLabel.text = place.name;
    return cell;


}


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

以下はPlaces.hです

#import <Foundation/Foundation.h>

@interface MCWPlaces : NSObject


@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *info;

@end

以下はPlaces.mです

#import "MCWPlaces.h"

@implementation MCWPlaces

@synthesize name;
@synthesize info;


@end

以下は詳細です.m

#import "MCWPlacesDetailViewController.h"


@interface MCWPlacesDetailViewController ()

@end

@implementation MCWPlacesDetailViewController 

@synthesize placeInfo;
@synthesize place;

- (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.
    self.title = place.name;
    self.placeInfo.text = place.info;

}


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

@end

以下は Details.h です

#import <UIKit/UIKit.h>
#import "MCWPlaces.h"

@interface MCWPlacesDetailViewController : UIViewController

@property (weak, nonatomic) IBOutlet UILabel *placeInfo;

@property (nonatomic, strong) MCWPlaces *place;



@end

bnm.plist

<plist version="1.0">
<dict>
    <key>PlaceName</key>
    <array>
        <string>Place 1</string>
        <string>Place 2</string>
        <string>Place 3</string>
    </array>
    <key>PlaceInfo</key>
    <array>
        <string>Place 1 Info</string>
        <string>Place 2 Info</string>
        <string>Place 3 Info</string>
    </array>
</dict>
</plist>

私のコードに何か問題がありましたか?

私の問題は「cellForRowAtIndexPath」だと思います。Places.h で「name」と「info」を nsstring として宣言しました。しかし、plistではnsarrayと同じです。しかし、私は問題を解決する方法を知りません。

4

2 に答える 2

0

データをロードするときに問題があると思います。

まず、place.plist からデータを取得すると言いますが、viewDidLoad で bnm.plist からデータをロードしようとしました

次のコードを使用してみてください:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Initialize table data

    // Find out the path of bnm.plist
    NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"bnm" ofType:@"plist"]];

    // Load the file content and read the data into arrays
    MCWPlaces *placeGO = [MCWPlaces new];
    placeGO.name = [dict objectForKey:@"PlaceName"];
    placeGO.info = [dict objectForKey:@"PlaceInfo"];
}

あなたの bnm.plist を見せていただけますか?

于 2013-09-21T22:49:45.543 に答える