iPhone- how to use Storyboard with custom UITableView cells and CellWithIdentifier

前端 未结 4 1644
执笔经年
执笔经年 2021-02-02 16:53

I\'m trying to make use of the new Storyboard designer and the ease of drawing UITableView cells instead of programmatically \"designing\" each row.

A good example of a

相关标签:
4条回答
  • 2021-02-02 17:26

    For each new custom UITableViewCell that you create in storyboard, you will want to create a new class file which implements UITableViewCell to link it to. Be sure to map all of the controls within your new cell that you laid out in storyboard to instance properties. Then you'll just use it with dequeuing like normal:

    YourTableViewCellClass *cell = (YourTableViewCellClass*)[tableView dequeueReusableCellWithIdentifier:@"YourCellIdentifierStringDefinedInStoryBoard"];
    // then set the properties for the class.
    cell.labelTime = @"whatever";
    
    0 讨论(0)
  • 2021-02-02 17:41

    For more implementation details of how to do it, using the methods described by mservidio and rob, check out the section "Designing Our own Prototype Cells" in this tutorial.

    0 讨论(0)
  • 2021-02-02 17:45

    Don't be a doofus like I was being. :)

    Make sure you set the Identifier value in the Attributes Inspector of the custom cell. Setting the Restoration ID of the custom cell in the Identity Inspector is the wrong way to go, and that's exactly what I did. Major facepalm for myself.

    0 讨论(0)
  • 2021-02-02 17:50

    There are two ways you can get to your custom subviews. The simpler way is using tags. Every view has a tag property which is an integer. You can set the tag in the nib, and set or get it in code. You can search a view tree for a view with a given tag by sending viewWithTag: to the root of the tree. So, for example, you could give your labelTime view the tag 57, and in your code, you'd find the view like this:

    UILabel *label = (UILabel *)[cell viewWithTag:57];
    

    The downside of using tags is that you have to keep the tag numbers in sync between your nib and your code. If they get out of sync, you'll either get the wrong view back or you'll get nil (and since you can send messages to nil, the system won't give you an error when that happens). Still, tags are so convenient that it's pretty common to use them like this.

    The other way is to create a custom subclass of UITableViewCell with an IBOutlet property for each custom subview. You can hook up the outlets to the subviews in the nib, and access the subviews via the properties in your code:

    MyTableViewCell *myCell = (MyTableViewCell *)cell;
    UILabel *label = cell.labelTime;
    

    This entails writing a lot more boilerplate than using tags, but it has the advantage that you will get warnings or errors (either at compile-time or when you first try to load the nib) if your nib and your code get out of sync.

    0 讨论(0)
提交回复
热议问题