所以我有一个带有以下代码的PersonDoc.h文件:

#import <Foundation/Foundation.h>

@class PersonData;

@interface PersonDoc : NSObject

@property (strong) PersonData *data;
@property (strong) UIImage *thumbImage;

- (id)initWithTitle:(NSString*)name gift:(NSString*)gift thumbImage:(UIImage *)thumbImage;

但是,我的PersonDoc.m文件一直给我一个警告符号,表示未完成实施。这是.m代码:
 #import "PersonDoc.h"
 #import "PersonData.h"

 @implementation PersonDoc

 @synthesize data = _data;
 @synthesize thumbImage = _thumbImage;


- (id)initWithTitle:(NSString*)title gift:(NSString *)gift thumbImage:(UIImage    *)thumbImage fullImage:(UIImage *)fullImage {
if ((self = [super init])) {
    self.data = [[PersonData alloc] initWithTitle:title gift:gift];
    self.thumbImage = thumbImage;
}
return self;
}
@end

PersonData.h代码:
#进口
@interface PersonData : NSObject

@property (strong) NSString *name;
@property (assign) NSString *gift;

- (id)initWithTitle:(NSString*)name gift:(NSString*)gift;

@end

PersonData.m代码:
#import "PersonData.h"

@implementation PersonData

@synthesize name = _name;
@synthesize gift = _gift;

- (id)initWithTitle:(NSString*)name gift:(NSString*)gift {
    if ((self = [super init])) {
        self.name = name;
        self.gift = gift;
    }
return self;
}
@end

在我的视图控制器中,我收到一条错误消息,指出在PersonDoc类型的对象上找不到属性名称和礼物。下面的代码在我的ViewController中:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:           (NSIndexPath *)indexPath
 {
// Configure the cell...
// Create the cell
UITableViewCell *cell;
cell = [tableView dequeueReusableCellWithIdentifier:@"PersonCell"];

if (!cell) {
    cell =  [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"PersonCell"];
}


PersonDoc *person = [self.people objectAtIndex:indexPath.row];
cell.textLabel.text = person.name;
cell.detailTextLabel.text = person.gift;
cell.imageView.image = person.thumbImage;

return cell;
}

我知道它与.h文件中的initWithTitle代码有关,因此有人可以向我展示如何对.h和.m文件执行initWithTitle的正确方法吗?谢谢,我真的很感谢你们的帮助!

最佳答案

标头和实现中的initWithTitle根据您发布的代码具有不同的签名。解决此问题,您的警告就会消失

09-30 00:18