ios - 为什么 Label Outlets 不能连接到 UITableViewCell 类
<p><p>我创建了一个表格 View 单元子类并将其设置为原型(prototype)的类。我想将 socket 添加到该类并连接它们。</p>
<p>但是 xcode 没有响应。</p>
<p>我下次尝试添加按钮的 socket ,它可以工作。</p>
<p>我想展示一张图片,可惜我没有足够的声誉。</p>
<p>我不明白为什么会这样。有人可以帮帮我吗,拜托!!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><ol>
<li>创建一个 xib 文件。删除 UIView 并拖动 UITableviewcell。 </li>
<li>设置您的 UITableviewcell 类和单元格的标识符</li>
<li>拖动单元格上的组件并将它们与您的类(class)联系起来。</li>
<li><p>在你的 UITableViewController 的方法 <code>(void)viewDidLoad</code> 上,设置:</p>
<p>] forCellWithReuseIdentifier:identifierOfCell];</p></li>
<li><p>关于方法<code>(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath</code>,设置:</p>
<p>YourClassTableViewCell *cell = ;</p>
<p>并设置标签的值<code>cell.label.text = @"Your text"。</code></p></li>
</ol>
<p>祝你好运!</p></p>
<p style="font-size: 20px;">关于ios - 为什么 Label Outlets 不能连接到 UITableViewCell 类,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28690066/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28690066/
</a>
</p>
页:
[1]