- (id)dequeueReusableCellWithIdentifier:(NSString *)identifier; 
- (id)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath
 NS_AVAILABLE_IOS(6_0); // newer 区别在这儿

解决方案 »

  1.   


    ios6的新方法?关键是怎么用?为什么报错?
      

  2.   

    1 这个方法在SDK5.0是运行不起来的。
    2 如果需要使用这个方法,你必须使用配套的方法来一起用,下面两个配套方法:// Beginning in iOS 6, clients can register a nib or class for each cell.
    // If all reuse identifiers are registered, use the newer -dequeueReusableCellWithIdentifier:forIndexPath: to guarantee that a cell instance is returned.
    // Instances returned from the new dequeue method will also be properly sized when they are returned.
    - (void)registerNib:(UINib *)nib forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(5_0);
    - (void)registerClass:(Class)cellClass forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);注意看上面的注释
    3 比如你已经用NIB做了一个Cell,或者自定义了一个Cell。我们在你创建UITableView的时候,就可以顺带
    self.tableView.backgroundColor = xxxx;
    [self.tableView registerClass:[CustomCell class] forCellReuseIdentifier:@"CustomCell"];这样你在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath这个方法里,你就可以省下这些代码:
        static NSString *CellIdentifier = @"Cell";
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
          //设置你的cell

    而只需要    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
    这样就够了,这下你明白了吗?
      

  3.   

    我用的xcode 4.5好像在tableview中拖进来一个uitableviewcell并命名为相应CellIdentifier也可以解决相应问题不过一个单独的tableviewcontroller用上面的方法有用,但当我在子tableviewcontroller中做相应的操作时就不行了,也不知道是我代码还有不对的地方还是怎么的?
      

  4.   

    同问。我想知道ios6以后才有的那个新方法有什么用?看文档还是不明白,那个indexPath参数是干什么用的呢?
      

  5.   

    - (id)dequeueReusableCellWithIdentifier:(NSString *)identifier; 
    - (id)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath区别在一个是MRC一个是ARC中的。
    第一个是在ARC中用的,就是storyboard中使用,这个不用设置全局变量static,可以直接用重用池,
    第二个是在MRC中使用的,需要设置重用池。
      

  6.   


    我这样子些是可以的  没有自定义行 并注册之类的操作!
    我开始叶鹏到多说是:““ must register a nib or a class for the identifier or connect a prototype cell in a storyboard'””大概就是需要自定义--注册 之类的。
    但是貌似可以不需要。  现在有碰到了。 有些不是很明白。