<small id='Vcyf3'></small><noframes id='Vcyf3'>

      • <bdo id='Vcyf3'></bdo><ul id='Vcyf3'></ul>
      <tfoot id='Vcyf3'></tfoot>

        <legend id='Vcyf3'><style id='Vcyf3'><dir id='Vcyf3'><q id='Vcyf3'></q></dir></style></legend>
      1. <i id='Vcyf3'><tr id='Vcyf3'><dt id='Vcyf3'><q id='Vcyf3'><span id='Vcyf3'><b id='Vcyf3'><form id='Vcyf3'><ins id='Vcyf3'></ins><ul id='Vcyf3'></ul><sub id='Vcyf3'></sub></form><legend id='Vcyf3'></legend><bdo id='Vcyf3'><pre id='Vcyf3'><center id='Vcyf3'></center></pre></bdo></b><th id='Vcyf3'></th></span></q></dt></tr></i><div id='Vcyf3'><tfoot id='Vcyf3'></tfoot><dl id='Vcyf3'><fieldset id='Vcyf3'></fieldset></dl></div>

        iOS5 中我的 UITableView 中的 dequeueReusableCellWithIden

        时间:2023-05-30
        • <tfoot id='ghiXv'></tfoot>

          <small id='ghiXv'></small><noframes id='ghiXv'>

            <bdo id='ghiXv'></bdo><ul id='ghiXv'></ul>
              <legend id='ghiXv'><style id='ghiXv'><dir id='ghiXv'><q id='ghiXv'></q></dir></style></legend>
                <tbody id='ghiXv'></tbody>

              <i id='ghiXv'><tr id='ghiXv'><dt id='ghiXv'><q id='ghiXv'><span id='ghiXv'><b id='ghiXv'><form id='ghiXv'><ins id='ghiXv'></ins><ul id='ghiXv'></ul><sub id='ghiXv'></sub></form><legend id='ghiXv'></legend><bdo id='ghiXv'><pre id='ghiXv'><center id='ghiXv'></center></pre></bdo></b><th id='ghiXv'></th></span></q></dt></tr></i><div id='ghiXv'><tfoot id='ghiXv'></tfoot><dl id='ghiXv'><fieldset id='ghiXv'></fieldset></dl></div>

                1. 本文介绍了iOS5 中我的 UITableView 中的 dequeueReusableCellWithIdentifier 错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我在 iOS 5 中遇到此错误

                  I am getting this error in iOS 5

                  -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]:无法识别的选择器发送到实例0xa217200

                  但是,我在 iOS 6 中没有遇到任何错误.我该如何解决这个问题?这是我的代码:

                  However, I get no errors in iOS 6. How can I fix this problem? Here's my code:

                  - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
                  {
                      static NSString *CellIdentifier = @"MyCell";
                  
                      UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; /// SIGABRT error
                  
                      if (!cell)
                      {
                          cell = [[UITableViewCell alloc]
                          initWithStyle: UITableViewCellStyleSubtitle
                          reuseIdentifier: CellIdentifier];
                      }
                  
                      return cell;
                  }
                  

                  推荐答案

                  EDIT:这个方法是iOS6+ SDK新增的.

                  EDIT: This method is newly added in iOS6+ SDK.

                  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
                  

                  但在 iOS 5 中,创建 UITableViewCell 的实例我们通常使用这种方法:-

                  But in iOS 5, to create instance of UITableViewCell we generally use this method :-

                  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
                  

                  在 iOS 5 中,不需要你在 iOS 6 中使用的额外参数.(forIndexPath:).

                  In iOS 5, there is no need of extra parameter which you have used in iOS 6. (forIndexPath:).

                  所以改变你的方法.它会起作用的.

                  So change your method. It will work.

                  这篇关于iOS5 中我的 UITableView 中的 dequeueReusableCellWithIdentifier 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:ARC,块中的 ivars 和通过捕获的自我的参考周期 下一篇:如何在 iOS 5 故事板中初始化自定义原型样式表单

                  相关文章

                  最新文章

                  • <bdo id='HE6Ve'></bdo><ul id='HE6Ve'></ul>

                  <small id='HE6Ve'></small><noframes id='HE6Ve'>

                    <tfoot id='HE6Ve'></tfoot>

                    <legend id='HE6Ve'><style id='HE6Ve'><dir id='HE6Ve'><q id='HE6Ve'></q></dir></style></legend>
                    1. <i id='HE6Ve'><tr id='HE6Ve'><dt id='HE6Ve'><q id='HE6Ve'><span id='HE6Ve'><b id='HE6Ve'><form id='HE6Ve'><ins id='HE6Ve'></ins><ul id='HE6Ve'></ul><sub id='HE6Ve'></sub></form><legend id='HE6Ve'></legend><bdo id='HE6Ve'><pre id='HE6Ve'><center id='HE6Ve'></center></pre></bdo></b><th id='HE6Ve'></th></span></q></dt></tr></i><div id='HE6Ve'><tfoot id='HE6Ve'></tfoot><dl id='HE6Ve'><fieldset id='HE6Ve'></fieldset></dl></div>