所以我有一个 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 代码:#import
@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 的正确方法吗?谢谢,我真的很感谢任何帮助家伙!