菜鸟教程小白 发表于 2022-12-13 09:38:03

ios - 无法访问 cellForRowAtIndexPath 上我的自定义单元格的 IBOutlets


                                            <p><p>我用 XIB 制作了一个自定义单元格:
.h</p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;

@interface TWCustomCell : UITableViewCell {
    IBOutlet UILabel *nick;
    IBOutlet UITextView *tweetText;
}

@end
</code></pre>

<p>.m</p>

<pre><code>#import &#34;TWCustomCell.h&#34;

@implementation TWCustomCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = ;
    if (self) {
      // Initialization code
    }
    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    ;

    // Configure the view for the selected state
}

@end
</code></pre>

<p>我以这种方式将它们加载到 <code>cellForRowAtIndexPath:</code> 中:</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)_tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @&#34;Cell&#34;;
    TWCustomCell *cell = (TWCustomCell*);
    //UITableViewCell *cell = ;
    if (cell == nil) {
      NSArray *topLevelObject = [ loadNibNamed:@&#34;TWCustomCell&#34; owner:nil options:nil];

      for (id currentObject in topLevelObject) {
            if(]) {
                cell = (TWCustomCell*) currentObject;
                break;
            }
      }
    }
    // Configure the cell...
    cell.tweetText.text = ;
    return cell;
}
</code></pre>

<p>在 <code>cell.tweetText.text = ;</code>
在 <code>cell</code> 之后的点上,Xcode 告诉我_“在 'TWCustomCell *' 类型的对象上找不到属性 'tweetText';你的意思是访问 ivar 'tweetText' 吗?”并告诉我用
<code>cell->tweetText.text</code>。但出现错误:“语义问题:实例变量 'tweetText'protected ”。我该怎么办?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您没有声明允许使用点语法访问类外部的 IBOutlets 的属性。</p>

<p>我会这样做:</p>

<p>在您的 .h 文件中:</p>

<pre><code>@property (nonatomic, readonly) UILabel *nick;
@property (nonatomic, readonly) UITextView *tweetText;
</code></pre>

<p>在.m中:</p>

<pre><code>@synthesize nick, tweetText;
</code></pre>

<p>或者您可以删除 ivar IBOutlets 并将属性声明为 retain 和 IBOutlets,如下所示:</p>

<pre><code>@property (nonatomic, retain) IBOutlet UILabel *nick;
@property (nonatomic, retain) IBOutlet UITextView *tweetText;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法访问 cellForRowAtIndexPath 上我的自定义单元格的 IBOutlets,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7966358/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7966358/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法访问 cellForRowAtIndexPath 上我的自定义单元格的 IBOutlets