iphone - 表格 View 不显示数据,iphone
<p><p>我现在正在使用 UITableView,我拥有的是</p>
<blockquote>
<p>MyClass.h</p>
<p>@interface MyClass : UIViewController{</p>
<p>}</p>
<p>@property (strong , strong) UILabel *name;</p>
<p>@property (strong , strong) UILabel *add;</p>
</blockquote>
<p>和</p>
<blockquote>
<p>MyClass.m</p>
<p>-(NSInteger)tableView:(UITableView *)atableView numberOfRowsInSection:(NSInteger)section{</p>
<pre><code>return 3 ;
}
</code></pre>
<p>-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {</p>
<pre><code>static NSString *CellIdentifier = @"cell";
tableCell = ;
...................................................
return tableCell;
</code></pre>
<p>}</p>
</blockquote>
<p>当我在 <strong>numberOfRowsInSection</strong> 处设置断点时,它似乎根本没有被执行。
现在让我很困惑。
有遇到过的请指教。</p>
<p>谢谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>最常见的原因是没有将 ViewController 设置为 TableView 委托(delegate)和数据源。如果它内置在 Storyboard中,您可以通过选择表格上的连接检查器并将这些属性拖到 ViewController 来执行此操作。</p>
<p>否则,在代码中设置如下:</p>
<pre><code>self.tableView.delegate = self;
self.tableView.datasource = self;
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 表格 View 不显示数据,iphone,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10201154/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10201154/
</a>
</p>
页:
[1]