IOS cainiao learning-custom cell in storyboard

Source: Internet
Author: User

In iOS development, implementing custom cell in storyboard is much easier than implementing it in nib files.

First, create your own custom cell class, which is called CustomCell and must inherit from UITableViewCell. Define the required controls in this class.

Then, open the storyboard and select the UIViewController that you want to add the custom cell. We call it ViewController. Add a cell in UITableView (or modify the original cell ). Change the cell style to custom, the cell class to CustomCell, And the identifier to CustomCellIdentifier. Then, you can add a control in the cell to connect the control with the control just defined in CustomCell.

Finally, add the following code to the tableView: cellForRowAtIndexPath: proxy method of the UITableView of ViewController:

[Plain]
CustomCell * cell = [tableView dequeueReusableCellWithIdentifier: @ "CustomCellIdentifier"];
In this way, a cell is created, and you can set the control you have added after this code.

 

 

From soloterry's column

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.