Difference between dequeueReusableCellWithIdentifier and dequeueReusableCellWithIdentifier: forIndexPath,

Source: Internet
Author: User

Difference between dequeueReusableCellWithIdentifier and dequeueReusableCellWithIdentifier: forIndexPath,

-(Id) dequeueReusableCellWithIdentifier :( NSString *) identifier; // Used by the delegate to acquire an already allocated cell, in lieu of allocating a new one. -(id) identifier :( NSString *) identifier forIndexPath :( NSIndexPath *) indexPath identifier (6_0); // newer dequeue method guarantees a cell is returned and resized properly, assuming identifier is registered

 

For example, you have used NIB as a Cell or customized a Cell. When you create a UITableView

Self. tableView. backgroundColor = xxxx;

[Self. tableView registerClass: [CustomCell class] forCellReuseIdentifier: @ "CustomCell"];

In this way, you can save the code in the tableView (UITableViewCell *) tableView cellForRowAtIndexPath :( NSIndexPath *) indexPath method:

Static NSString * CellIdentifier = @ "Cell ";

Static NSString * CellIdentifier = @ "Cell ";
If (cell = nil ){
Cell = [[UITableViewCell alloc] initWithStyle: UITableViewCellStyleDefault reuseIdentifier: CellIdentifier];
// Set your cell
}

As longUITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier: @ "Cell" forIndexPath: indexPath];

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.