菜鸟教程小白 发表于 2022-12-13 07:00:24

ios - 为什么 View Controller 的 header 中没有协议(protocol)声明?


                                            <p><p>我正在学习objective-c,并在我的书中找到了以下代码。我有 3 个问题,</p>

<ol>
<li>显然它通过实现两个必需的方法来符合协议(protocol),但是为什么不在 header 中编写 <code><UITableViewDataSource,UITableViewDelegate></code> 就可以工作?</li>
<li>它符合哪个协议(protocol),<code>UITableViewDataSource</code> 还是 <code>UITableViewDelegate</code>? </li>
<li>为什么没有<code>UITableView.delegate = self</code>?</li>
</ol>

<p>这是代码,</p>

<pre><code>@implementation ItemsViewController

-(instancetype) init
{
    self = ;
    if (self) {
      for (int i = 0; i &lt; 5; i++)
      {
            [ creatItem];
      }
    }
    return self;
}
-(instancetype) initWithStyle:(UITableViewStyle)style
{
    return ;
}

-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [[ allItems] count];
}
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *c = ;
    NSArray *items = [ allItems];
    Item *item = ;
    c.textLabel.text = ;
    return c;
}

-(void) viewDidLoad
{
    ;
    forCellReuseIdentifier:@&#34;UITableViewCell&#34;];
}

@end
</code></pre>

<p>感谢您帮助理解这一点。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><strong><code>1。显然它通过实现两个必需的方法来符合协议(protocol),但是为什么在标题中不写 '<'UITableViewDataSource,UITableViewDelegate'>' 就可以工作?</code></strong></p>

<p>标题中的 '<'UITableViewDataSource,UITableViewDelegate'>' 只是向编译器表明你想在你的类中实现委托(delegate)方法。如果您不实现标记为 <strong>@required</strong> 的委托(delegate)方法,您将收到警告,但由于大多数委托(delegate)方法通常是 <strong>@optional</strong> 您的代码将编译并运行美好的。这并不意味着您不应该在标题中添加委托(delegate)。 </p>

<p><strong><code>2。它遵循哪个协议(protocol),UITableViewDataSource 还是 UITableViewDelegate?</code></strong> </p>

<p>默认只需要<code>UITableViewDataSource</code> 必须定义这两个函数</p>

<pre><code>-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
</code></pre>

<p><strong><code>3。为什么没有 UITableView.delegate = self?</code></strong> </p>

<p>它在那里,检查你的 <code>xib</code> 你也从 xib 设置了委托(delegate)。右键<code>UITableView</code>你就会明白我的意思了,不设置委托(delegate)上面的方法都行不通。</p>

<p>希望这会有所帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 为什么 ViewController 的 header 中没有协议(protocol)声明?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22497217/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22497217/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 为什么 View Controller 的 header 中没有协议(protocol)声明?