0

我是 iOS 开发的新手,目前我正在开发一个包含 4 个选项卡的选项卡式应用程序。在我的一个选项卡上,我试图显示表格视图,但出现以下错误。

2013-03-13 14:15:35.416 STAM[4054:c07]-[UITableViewController setProducts:]:无法识别的选择器发送到实例 0xa17c1f0

我创建了一个 ProductsViewController 类,它是 UITableViewController 的子类,并且我将 TableViewController 连接到 StoryBoard 中的 ProductViewController。

我还创建了一个 Product 类,在其中插入了以下属性:

产品.h

 #import <Foundation/Foundation.h>

 @interface Product : NSObject
 @property (nonatomic, copy) NSString *name;
 @property (nonatomic, copy) NSString *number;
 @end

在 AppDelegate.mi 中做了以下事情:

@implementation AppDelegate {
NSMutableArray *products;
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    products = [NSMutableArray arrayWithCapacity:20];

Product *product = [[Product alloc] init];
product.name = @"Test Product";
product.number = @"123546";
[products addObject:product];

product = [[Product alloc] init];
product.name = @"Test Product 2";
product.number = @"654321";
[products addObject:product];

UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
UINavigationController *navigationController = [[tabBarController viewControllers] objectAtIndex:0];
ProductsViewController *productsViewController = [[navigationController viewControllers] objectAtIndex:0];
productsViewController.products = products;

return YES;
}

最后在 ProductViewController.h 中:

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    return [self.products count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath     *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ProductCell"];
Product *product = [self.products objectAtIndex:indexPath.row];
cell.textLabel.text = product.name;
    cell.detailTextLabel.text = product.number;

    return cell;
}

我真的不知道在哪里寻找错误。

非常感谢你!

花岗岩

4

1 回答 1

1

该行:

productsViewController.products = products;

转换为:

[productsViewController setProducts: products];

在您提供的代码中,没有提到“读写”产品属性,也没有提供上述方法。您通常可以这样做:

@interface ProductViewController ...
@property (readwrite) NSArray *products
// ...
@end


@implementation ProductViewController
@synthesize products
// ...
@end
于 2013-03-13T14:22:15.537 回答