我使用XIB创建了一个自定义单元格: .h
#import <UIKit/UIKit.h>
@interface TWCustomCell : UITableViewCell {
IBOutlet UILabel *nick;
IBOutlet UITextView *tweetText;
}
@end
的.m
#import "TWCustomCell.h"
@implementation TWCustomCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
我以这种方式加载cellForRowAtIndexPath:
:
- (UITableViewCell *)tableView:(UITableView *)_tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
TWCustomCell *cell = (TWCustomCell*)[self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
//UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *topLevelObject = [[NSBundle mainBundle] loadNibNamed:@"TWCustomCell" owner:nil options:nil];
for (id currentObject in topLevelObject) {
if([currentObject isKindOfClass:[UITableViewCell class]]) {
cell = (TWCustomCell*) currentObject;
break;
}
}
}
// Configure the cell...
cell.tweetText.text = [tweets objectAtIndex:indexPath.row];
return cell;
}
在cell.tweetText.text = [tweets objectAtIndex:indexPath.row];
在cell
之后的点上,Xcode告诉我在“TWCustomCell *”类型的对象上找不到“属性'tweetText';你的意思是访问ivar'tweetText'吗?”并告诉我用它替换它
cell->tweetText.text
。但是出现了错误:“语义问题:实例变量'tweetText'受到保护”。我该怎么办?
答案 0 :(得分:2)
您没有声明一个允许使用点语法访问类外的IBOutlet的属性。
以下是我将如何做到这一点:
你的.h文件中的:
@property (nonatomic, readonly) UILabel *nick;
@property (nonatomic, readonly) UITextView *tweetText;
<。>中的:
@synthesize nick, tweetText;
或者您可以删除ivar IBOutlets并将属性声明为retain和IBOutlets,如下所示:
@property (nonatomic, retain) IBOutlet UILabel *nick;
@property (nonatomic, retain) IBOutlet UITextView *tweetText;
答案 1 :(得分:1)
问题在于我的自定义单元格ivars:
#import <UIKit/UIKit.h>
@interface TWCustomCell : UITableViewCell {
//added here @public and you can access them now
@public
IBOutlet UILabel *nick;
IBOutlet UITextView *tweetText;
}
@end